🎨 Adds new styles used by config editor

This commit is contained in:
Alicia Sykes
2021-06-20 20:43:55 +01:00
parent 04708a4f3f
commit cd314cb523
3 changed files with 12 additions and 0 deletions

View File

@@ -76,4 +76,6 @@
--side-bar-color: var(--primary);
--status-check-tooltip-background: var(--background-darker);
--status-check-tooltip-color: var(--primary);
--code-editor-color: var(--black);
--code-editor-background: var(--white);
}

View File

@@ -65,3 +65,9 @@ $extra-large: 2800px;
@content;
}
}
@mixin tablet-down {
@media (max-width: #{$small - 1px}) {
@content;
}
}