Work on add space modal

This commit is contained in:
Jon Staab
2024-08-08 14:02:46 -07:00
parent fb04a68168
commit 6c2e5d6e07
17 changed files with 232 additions and 107 deletions
+18 -17
View File
@@ -42,23 +42,6 @@
font-family: Lato;
}
.button {
padding: 12px 16px;
display: flex;
border-radius: var(--rounded-btn, 0.5rem);
cursor: pointer;
animation: button-pop 200ms ease-out;
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.button:active:hover,
.button:active:focus {
animation: button-pop 0s ease-out;
transform: scale(var(--btn-focus-scale, 0.97));
}
[data-theme="dark"] {
--stark: #111;
--stark-content: #eee;
@@ -88,3 +71,21 @@
.hover\:bg-stark-content:hover {
background-color: var(--stark-content);
}
.card {
padding: 1rem;
background-color: oklch(var(--b2) / 1);
border-radius: var(--rounded-box, 1rem);
}
.column {
@apply flex flex-col;
}
.heading {
@apply text-2xl text-stark-content text-center;
}
.subheading {
@apply text-xl text-stark-content text-center;
}