Files
web/components/MyPages/Blocks/Header/header.module.css
2024-05-15 09:43:29 +02:00

21 lines
251 B
CSS

.header {
display: grid;
grid-template-areas:
"title link"
"subtitle subtitle";
grid-template-columns: 1fr max-content;
gap: 1.5rem;
}
.title {
grid-area: title;
}
.link {
grid-area: link;
}
.subtitle {
grid-area: subtitle;
}