Gitea-Theme/test/scss/repo-home.scss

38 lines
866 B
SCSS
Raw Normal View History

2024-11-08 11:21:42 +00:00
@use "common";
@use "repo-home/header";
2024-11-11 10:24:12 +00:00
@use "repo-home/sidebar-right";
@use "fontawesome6/scss/fontawesome";
@use "fontawesome6/scss/regular";
@use "fontawesome6/scss/solid";
2024-11-13 11:20:37 +00:00
@use "fontawesome6/scss/brands";
2024-11-08 11:21:42 +00:00
body {
background-color: #232323;
2024-11-11 10:24:12 +00:00
display: flex;
flex-direction: column;
min-height: 100vh;
.body-content {
main.main-content {
flex: 1;
//display: flex;
background-color: #535153; // bg-color for testing purposes
}
// Left sidebar (if applicable)
.sidebar-left {
width: 250px;
background-color: #747272; // bg-color for testing purposes
/* Left sidebar styles */
}
}
& > *:not(header) {
display: flex;
flex-direction: row;
flex: 1; // Expands to fill remaining height of body
}
}