Port root RMO with style to main page

This commit is contained in:
Eli Ribble 2026-04-03 15:58:50 +00:00
parent 4d718f9a12
commit 4a9d6e0db6
No known key found for this signature in database
4 changed files with 142 additions and 105 deletions

29
ts/style/rmo.scss Normal file
View file

@ -0,0 +1,29 @@
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
// Make custom SVG icons about the same size as other icons
i.bi svg {
height: 18px;
width: 18px;
}
@import "bootstrap/scss/functions";
// Import Bootstrap's variables (this merges with your custom variables)
@import "bootstrap/scss/variables";
// Import Bootstrap's mixins
@import "bootstrap/scss/mixins";
// Import all of Bootstrap (or pick specific components)
@import "bootstrap/scss/bootstrap";
// Import Bootstrap Icons
//@import "bootstrap-icons/font/bootstrap-icons.scss";
@import "./dashboard.scss";
@import "./sidebar.scss";