penpot/frontend/src/app/main/ui/dashboard.scss
Xaviju 713ff6190b
🔧 Add SCSS linter (stylelint) (#8592)
* 🔧 Add SCSS linter (stylelint)

*  Fix default standard scss errors with extends - WIP

*  Fix default standard scss errors

*  Update and cleanup

*  Update and cleanup

*  Update and cleanup

* 🐛 Fix broken visual regression tests

* 📎 Add to CHANGES

* ♻️ Remove unused class
2026-03-26 10:09:54 +01:00

28 lines
733 B
SCSS

// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// Copyright (c) KALEIDOS INC
@use "refactor/common-refactor.scss" as deprecated;
.dashboard {
@extend %new-scrollbar;
background-color: var(--app-background);
display: grid;
grid-template-columns: deprecated.$s-40 deprecated.$s-256 1fr;
grid-template-rows: deprecated.$s-52 1fr;
height: 100vh;
}
.dashboard-content {
display: grid;
grid-template-rows: deprecated.$s-64 1fr;
position: relative;
grid-row: 1 / span 2;
padding: deprecated.$s-16 deprecated.$s-16 0 0;
overflow: hidden;
width: 100%;
}