fix: breakout header component to blocks header

This commit is contained in:
Christel Westerberg
2024-05-14 11:36:28 +02:00
parent 5d15e5605f
commit 51287c11df
9 changed files with 8 additions and 85 deletions

View File

@@ -3,26 +3,6 @@
gap: 1.5rem;
}
.header {
display: grid;
grid-template-areas: "title link";
grid-template-columns: 1fr max-content;
}
.title {
grid-area: title;
font-weight: 600;
color: var(--some-black-color, #111);
text-align: center;
}
.link {
grid-area: link;
}
.subtitle {
margin: 0;
font-size: 2rem;
}
.value {
color: var(--Theme-Primary-Light-On-Surface-Text);
}
@@ -60,9 +40,3 @@
color: var(--Theme-Primary-Light-On-Surface-Text);
aspect-ratio: 1/1;
}
@media screen and (min-width: 950px) {
.card:nth-child(2) {
grid-area: card2;
}
}