shell_styler/scss/main.scss
Candifloss 936e86fa2a Fix: SCSS Deprecation Warning
- Replace deprecated `@import` with `@use`
- Move lines around in `_preview.scss`
- Update terminal preview height
- Update terminal preview font
2025-08-20 19:18:58 +05:30

22 lines
339 B
SCSS

@use 'vars' as *;
@use 'sidebar';
@use 'preview';
@use 'footer';
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: $bg-dark;
color: $text-color;
}
.container {
display: flex;
min-height: 100vh;
padding-bottom: $footer-height;
}