@studiocms/ui
Version:
The UI library for StudioCMS. Includes the layouts & components we use to build StudioCMS.
69 lines (68 loc) • 1.2 kB
CSS
footer.sui-footer {
display: flex;
flex-direction: column;
gap: 2rem;
background-color: hsl(var(--background-step-1));
padding: 2rem 10vw;
color: hsl(var(--text-normal)) ;
}
.upper,
.lower {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.links {
display: flex;
justify-content: flex-end;
flex-direction: row;
flex-wrap: wrap;
gap: 2rem;
}
.links ul {
list-style-type: none;
margin: 0 ;
padding: 0 ;
}
.links ul li,
.links ul li * {
color: hsl(var(--text-normal)) ;
width: fit-content;
}
.links ul li:has(a):hover {
text-decoration: underline;
}
.sui-footer-link-label {
font-size: 1.125em;
font-weight: 700;
}
.separator {
height: 1px;
width: 100%;
border: none;
background: hsl(var(--border));
}
.lower {
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
@media screen and (max-width: 1440px) {
footer.sui-footer {
padding: 2rem;
}
}
@media screen and (max-width: 1280px) {
.upper {
flex-direction: column;
gap: 2rem;
}
.links {
justify-content: flex-start;
}
}
@media screen and (max-width: 640px) {
.links ul {
width: calc(50% - 1rem);
}
}