query-state-hook
Version:
Easily manage the state of your React components via URL query parameters
58 lines (48 loc) • 614 B
CSS
:root {
--color-body-bg: #061720;
--color-surface: #063045;
--color-placeholder: #ffffff26;
}
html {
background-color: var(--color-body-bg);
}
li {
list-style: none;
}
h1,
h2,
h3,
h4,
h5,
p,
span,
a,
label {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
color: white;
}
ul {
margin: 0;
padding: 0;
}
.w-full {
width: 100%;
}
.flex {
display: flex;
gap: 10px;
}
.flex-col {
display: flex;
flex-direction: column;
gap: 20px;
}
.flex-space-around {
display: flex;
justify-content: space-around;
}
.flex-center {
display: flex;
justify-content: space-around;
}