You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sandkasten-web/src/app/components/editor/editor.component.scss

75 lines
1.1 KiB

#editor-bar-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px;
color: #fff;
}
.editor-section-bar-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
.button-icon {
border: 0;
background: transparent;
cursor: pointer;
}
svg {
width: 30px;
height: auto;
aspect-ratio: 1;
cursor: pointer;
}
.button-run {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #04aa6d;
border: none;
color: white;
padding: 12px 16px;
font-size: 16px;
width: 100px;
cursor: pointer;
border-radius: 10px;
}
select {
background-color: #0000f0;
border: none;
color: white;
padding: 12px 16px;
font-size: 16px;
cursor: pointer;
border-radius: 10px;
}
/*editor*/
.editor-center {
height: 700px;
display: flex;
align-items: center;
justify-content: space-between;
margin: 0px 0px 0px 0px;
}
.editor-child-element {
min-height: 100px;
height: 100%;
width: 1000px;
background-color: black;
color: #fff;
border-right: 10px solid gray;
}
::ng-deep .codemirror6-editor {
height: 100%;
}