schlechtenburg/docs/ExampleEditor.scss

42 lines
729 B
SCSS
Raw Normal View History

2022-03-17 17:59:51 +00:00
.example-editor {
display: flex;
flex-direction: column;
2022-09-05 19:12:20 +00:00
&--mode {
2022-03-17 17:59:51 +00:00
display: flex;
2022-09-05 19:12:20 +00:00
justify-content: stretch;
2022-03-17 17:59:51 +00:00
align-items: center;
}
2022-09-05 19:12:20 +00:00
&--mode-tab {
display: flex;
margin-top: 1px;
padding: 0.25rem 1rem;
border-top: 1px solid var(--vp-c-divider-light);
border-right: 1px solid var(--vp-c-divider-light);
input {
display: none;
}
&_checked {
color: var(--vp-c-brand);
}
}
2022-03-17 17:59:51 +00:00
&--sb {
display: flex;
flex-direction: column;
2022-09-05 19:12:20 +00:00
border: 1px solid var(--vp-c-divider-light);
}
&--json {
margin: 0;
border: 1px solid var(--vp-c-divider-light);
background-color: var(--vp-c-text-1);
color: var(--vp-c-bg);
overflow: scroll;
2022-03-17 17:59:51 +00:00
}
}