Files
CRM-Mono/apps/web/src/components/BrandLogos/BrandLogos.module.scss
Igor Rybakov 6228624805
Some checks failed
CI / main (push) Has been cancelled
Фронт с макета
2026-03-06 23:02:58 +02:00

91 lines
1.5 KiB
SCSS

.section {
padding: var(--space-2xl) var(--space-lg);
max-width: var(--max-width);
margin: 0 auto;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
}
.title {
font-size: 22px;
font-weight: 700;
color: var(--color-navy-500);
margin: 0;
}
.allLink {
background: none;
border: none;
color: var(--color-orange-500);
font-weight: 600;
font-size: 13px;
cursor: pointer;
display: flex;
align-items: center;
gap: 4px;
&:hover {
text-decoration: underline;
}
}
.grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 12px;
@media (max-width: 1024px) {
grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 640px) {
grid-template-columns: repeat(2, 1fr);
}
}
.card {
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--border-radius-md);
padding: 16px 12px;
text-align: center;
cursor: pointer;
transition: box-shadow 0.2s;
display: block;
&:hover {
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
}
.logoBox {
width: 48px;
height: 48px;
border-radius: var(--border-radius-md);
background: var(--color-slate-100);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 8px;
font-weight: 800;
font-size: 15px;
color: var(--color-slate-600);
}
.name {
font-size: 12px;
font-weight: 600;
color: var(--color-slate-700);
}
.meta {
font-size: 10px;
color: var(--color-slate-400);
margin-top: 2px;
}