- Replace deprecated `@import` with `@use` - Move lines around in `_preview.scss` - Update terminal preview height - Update terminal preview font
21 lines
480 B
SCSS
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);
|
|
}
|
|
} |