swingset
Version:
drop-in component library and documentation pages for next.js
39 lines (32 loc) • 550 B
CSS
.editor {
background: #1d2528;
font-family: 'Source Code Pro', monospace;
font-size: 14px;
overflow: auto;
transition: all 0.25s ease;
}
.editor * > textarea:focus {
outline: none;
}
.liveComponent {
border: 1px solid #bbb;
border-radius: 3px;
padding: 20px;
margin-bottom: 30px;
position: relative;
}
.caret {
float: right;
margin-right: 5px;
transition: all 0.25s ease;
transform: rotate(180deg);
}
.clickable {
cursor: pointer;
}
.collapsed {
display: none;
}
.caretCollapsed {
transform: rotate(0deg);
}