fix: misc cleanup

This commit is contained in:
Devin Haska 2024-02-26 11:39:09 -08:00
parent 2fef5d60d8
commit e6c2967443
6 changed files with 11 additions and 22 deletions

View file

@ -1,7 +0,0 @@
.date {
color: var(--color-fadeText);
}
.date svg {
color: var(--color-shadow);
}

View file

@ -1,3 +1,9 @@
/*
* From Every Layout
* GRID
* https://every-layout.dev/layouts/grid/
*/
.media-grid {
display: grid;
grid-gap: var(--spacing-0\.5);

View file

@ -1,4 +1,5 @@
/* Adapted from the Tokyo Night theme on GitHub
/*
* Adapted from the Tokyo Night theme on GitHub
* https://github.com/folke/tokyonight.nvim/blob/main/extras/prism/tokyonight_night.js
*/

View file

@ -1,12 +0,0 @@
.navbar {
backdrop-filter: blur(3px);
background-color: color-mix(
in srgb,
var(--color-background) 70%,
transparent
);
background-image: linear-gradient(var(--color-background) 20%, transparent);
position: sticky;
top: 0;
z-index: 1;
}