add missing files; improve dashboard; rewrite urls

This commit is contained in:
bkfox
2024-04-11 00:28:43 +02:00
parent a24318bc84
commit 1bd4e03f02
40 changed files with 584 additions and 357 deletions

View File

@ -261,9 +261,8 @@
}
&.tiny {
.content {
font-size: v.$text-size;
}
.title { font-size: calc(var(--preview-title-sz) * 0.8); }
.content { font-size: v.$text-size; }
}
}
@ -367,6 +366,7 @@
.actions {
text-align: right;
align-items: center;
}
&:not(.wide) .media {

View File

@ -54,7 +54,16 @@
.height-20 { height: 20em; }
.height-25 { height: 25em; }
// ---- grid
// ---- grid / flex
.gap-1 { gap: v.$mp-1 !important; }
.gap-2 { gap: v.$mp-2 !important; }
.gap-3 { gap: v.$mp-3 !important; }
.gap-4 { gap: v.$mp-4 !important; }
.gap-5 { gap: v.$mp-5 !important; }
// ---- ---- grid
@mixin grid {
display: grid;
grid-template-columns: 1fr 1fr;
@ -70,7 +79,7 @@
.grid-2 { @include grid; @include grid-2; }
.grid-3 { @include grid; @include grid-3; }
// ---- flex
// ---- ---- flex
.flex-row { display: flex; flex-direction: row }
.flex-column { display: flex; flex-direction: column }
.flex-grow-0 { flex-grow: 0 !important; }
@ -124,3 +133,14 @@
background-color: v.$red !important;
border-color: v.$red-dark !important;
}
.box-shadow {
&:hover {
box-shadow: 0em 0em 1em rgba(0,0,0,0.2);
}
&.active {
box-shadow: 0em 0em 1em rgba(0,0,0,0.4);
}
}