Fix list color on pages

This commit is contained in:
Alex 2026-06-10 13:41:23 -07:00
parent 85c517dcd6
commit 27972a47ba
3 changed files with 12 additions and 5 deletions

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,7 @@
@use '../shared/colors'; @use '../shared/colors';
.posts { .posts,
.page {
.list { .list {
ul { ul {
list-style: none; list-style: none;
@ -8,6 +9,7 @@
li { li {
padding: 1rem 0; padding: 1rem 0;
color: colors.$primaryWhite;
a { a {
color: colors.$primaryWhite; color: colors.$primaryWhite;

View file

@ -142,14 +142,19 @@
.wrapper { .wrapper {
position: absolute; position: absolute;
top: 2rem; top: 50%;
left: 50%; left: 50%;
transform: translate(-50%, 0); transform: translate(-50%, -50%);
width: 100%; width: 100%;
max-width: 700px; max-width: 700px;
height: 100%; height: 75%;
max-height: 100vh; max-height: 100vh;
/* @media (min-width: 600px) {
top: 2rem;
transform: translate(-50%, 0);
} */
.close { .close {
cursor: pointer; cursor: pointer;
font-family: AtomicAge-Regular; font-family: AtomicAge-Regular;