Files
waggle-os/apps/www/app/_components/SovereigntyBand.module.css
Oleg Maslov 0c3e2ead3b
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled
moving
2026-09-02 10:10:29 +02:00

48 lines
703 B
CSS

.band {
background: var(--hive-900);
border-top: 1px solid var(--line-soft);
border-bottom: 1px solid var(--line-soft);
}
.header {
max-width: 720px;
margin-bottom: 56px;
}
.grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
margin-bottom: 48px;
}
.item {
border-top: 2px solid var(--honey-600);
padding-top: 20px;
}
.title {
font-size: 15px;
font-weight: 600;
color: var(--hive-50);
margin-bottom: 8px;
}
.body {
font-size: 13px;
line-height: 1.6;
color: var(--hive-300);
}
@media (max-width: 1023px) {
.grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 560px) {
.grid {
grid-template-columns: 1fr;
}
}