You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
544 B
CSS
40 lines
544 B
CSS
.title--components {
|
|
body {
|
|
max-width: none;
|
|
}
|
|
|
|
.two-column {
|
|
display: grid;
|
|
grid-template-columns: min-content 15px 1fr;
|
|
}
|
|
|
|
.resize-gutter {
|
|
background-color: gray;
|
|
cursor: ew-resize;
|
|
height: 100%;
|
|
}
|
|
|
|
.resizable {
|
|
width: var(--resizable-column-width);
|
|
overflow-x: auto;
|
|
}
|
|
|
|
transition: transform 200ms, opacity 200ms;
|
|
&.restarting {
|
|
transform: scale(0.99);
|
|
opacity: 0.6;
|
|
}
|
|
}
|
|
|
|
.component-preview-parameters {
|
|
fieldset {
|
|
background-color: #80808024;
|
|
}
|
|
}
|
|
|
|
.component-preview {
|
|
* {
|
|
transition: all 150ms;
|
|
}
|
|
}
|