Removed live indicator + began to write graphics menu

This commit is contained in:
l_samenv
2024-08-08 16:19:21 +02:00
parent 13a105183b
commit aef9813590
14 changed files with 222 additions and 8 deletions

View File

@ -0,0 +1,12 @@
.horizontal-divider-container{
width: 100%;
height: 10px;
display: flex;
}
.horizontal-divider{
height: 2px;
width: 80%;
background-color:black;
margin: auto;
}

View File

@ -0,0 +1,20 @@
class HorizontalDivider extends HTMLElement{
constructor(){
super();
}
connectedCallback(){
this.render()
}
render(){
this.innerHTML = `
<link rel="stylesheet" href="./components/divider/horizontal_divider.css">
<div class="horizontal-divider-container">
<div class="horizontal-divider"/>
</div>
`
}
}
customElements.define("sea-horizontal-divider", HorizontalDivider)