26 lines
382 B
CSS
26 lines
382 B
CSS
.button {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
|
|
& .textContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: var(--Spacing-x1);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
width: fit-content;
|
|
}
|
|
}
|
|
|
|
.loading {
|
|
position: absolute;
|
|
&.hidden {
|
|
opacity: 0;
|
|
}
|
|
}
|