3034f4ce6c
* bring in ody styles; modify; cleanup * workflow * workflow * v0.52.6-alpha.teststyles.1 * fix hook * v0.52.6-alpha.teststyles.2 * style fixes * fix pagination styling * v0.52.6-alpha.teststyles.3 * wallet icon was bad * restore deploy script * fixes * fix player close button * modal inputs * cleanup * cleanup * fix staked indicator * fix profile menu button skel delay * fix view-all-playlists hover * fix overlay buttons on collection page * fix header buttons
100 lines
1.2 KiB
SCSS
100 lines
1.2 KiB
SCSS
.flex {
|
|
display: flex;
|
|
}
|
|
.flex-col {
|
|
flex-direction: column;
|
|
}
|
|
.justify-between {
|
|
justify-content: space-between;
|
|
}
|
|
.justify-center {
|
|
justify-content: center;
|
|
}
|
|
.items-center {
|
|
align-items: center;
|
|
}
|
|
.w-full {
|
|
width: 100%;
|
|
}
|
|
.opacity-40 {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.opacity-30 {
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.h-12 {
|
|
height: 3rem;
|
|
}
|
|
|
|
.mt-0 {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.mt-s {
|
|
margin-top: var(--spacing-s);
|
|
}
|
|
|
|
.mt-m {
|
|
margin-top: var(--spacing-m);
|
|
}
|
|
|
|
.mb-s {
|
|
margin-bottom: var(--spacing-s);
|
|
}
|
|
|
|
.mb-m {
|
|
margin-bottom: var(--spacing-m);
|
|
}
|
|
|
|
.mb-xl {
|
|
margin-bottom: var(--spacing-xl);
|
|
}
|
|
|
|
.ml-s {
|
|
margin-left: var(--spacing-s);
|
|
}
|
|
|
|
.ml-m {
|
|
margin-left: var(--spacing-m);
|
|
}
|
|
|
|
.mr-m {
|
|
margin-right: var(--spacing-m);
|
|
}
|
|
|
|
.mb-0 {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.text-s {
|
|
font-size: var(--font-small);
|
|
}
|
|
|
|
@media (min-width: $breakpoint-small) {
|
|
.md\:items-center {
|
|
align-items: center;
|
|
}
|
|
.md\:flex-col {
|
|
flex-direction: column;
|
|
}
|
|
.md\:ml-m {
|
|
margin-left: var(--spacing-m);
|
|
}
|
|
.md\:flex-row {
|
|
flex-direction: row;
|
|
}
|
|
.md\:w-auto {
|
|
width: auto;
|
|
}
|
|
.md\:mt-0 {
|
|
margin-top: 0;
|
|
}
|
|
.md\:mb-xl {
|
|
margin-bottom: var(--spacing-xl);
|
|
}
|
|
.md\:h-12 {
|
|
height: 3rem;
|
|
}
|
|
}
|