mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-12 10:53:51 +00:00
18 lines
335 B
SCSS
18 lines
335 B
SCSS
@use '../../theme/ontimeColours' as *;
|
|
@use '../../theme/ontimeStyles' as *;
|
|
|
|
// declare editor specific styling constants
|
|
:root {
|
|
--editor--panel__br: 8px;
|
|
}
|
|
|
|
@mixin panel() {
|
|
display: flex;
|
|
|
|
position: relative;
|
|
border-radius: var(--editor--panel__br);
|
|
height: 100%;
|
|
background-color: $bg-container-l2;
|
|
padding: 1rem;
|
|
}
|