shell_styler/scss/_preview.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

21 lines
480 B
SCSS

@use 'vars' as *;
.preview {
margin-left: $sidebar-width;
padding: 2rem;
min-height: calc(100vh - $footer-height);
width: 100%;
background: $bg-light;
.terminal-preview {
font-family: 'IosevkaTermSlab Nerd Font Mono', 'Fira Code', 'Courier New', monospace;
color: $text-color;
background: $bg-dark;
font-size: 14px;
height: 4rem;
padding: 1.5rem;
border-radius: 8px;
//width: 100%;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
}