Adding in modal for card detail when card is clicked. Working through styling, and working with NextJS.

This commit is contained in:
Frank Delaguila
2022-11-04 15:40:07 -06:00
parent a7d15cc120
commit a036c449f7
6 changed files with 106 additions and 25 deletions

View File

@@ -29,5 +29,13 @@
}
@media (prefers-color-scheme: dark) {
}
@media only screen and (min-width: 1280px) {
.hero {
max-width: 1280px;
margin: 2rem auto 0 auto;
border-radius: 2rem;
}
}

View File

@@ -12,11 +12,18 @@
}
}
.modal {
background: #1d1d1c;
width: 100%;
height: 100%;
}
.spinner {
display: inline-block;
width: 80px;
height: 80px;
}
.spinner:after {
content: " ";
display: block;
@@ -28,6 +35,7 @@
border-color: #fff transparent #fff transparent;
animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
0% {
transform: rotate(0deg);