mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-26 23:21:41 +01:00
* Fixes css to have full containers * Adds split panes * Fixes background color * Fixes splitter * Fixes tests * Adds more tests * Updates tests * Adds vuex * Moves splitpane to app * Moves the panes to app * Fixes columns with min-width * Update packages * Updates html to have better components * Updates npm packages * Fixes scrollar * Creates a scrollable view * Fixes App specs * Adds vuex for component * Updates to use splitpanes * Styles splitter * Removes fetch-mock
25 lines
396 B
SCSS
25 lines
396 B
SCSS
@charset "utf-8";
|
|
|
|
$menu-item-active-background-color: hsl(171, 100%, 41%);
|
|
$menu-item-color: hsl(0, 6%, 87%);
|
|
|
|
@import "../node_modules/bulma/bulma.sass";
|
|
@import "../node_modules/splitpanes/dist/splitpanes.css";
|
|
|
|
.is-dark {
|
|
color: #ddd;
|
|
background-color: #111;
|
|
}
|
|
|
|
body {
|
|
font-family: "Roboto", sans-serif;
|
|
}
|
|
|
|
h1.title {
|
|
font-family: "Gafata", sans-serif;
|
|
}
|
|
|
|
.column {
|
|
min-width: 0;
|
|
}
|