Files
web/components/MyPages/Blocks/Stays/Header/header.module.css
2024-05-03 08:16:52 +02:00

29 lines
394 B
CSS

.header {
display: grid;
grid-template-areas: "title link";
grid-template-columns: 1fr max-content;
}
.title {
grid-area: title;
font-weight: 600;
}
.link {
grid-area: link;
}
.subtitle {
padding-top: 0.5rem;
padding-bottom: 2.5rem;
margin: 0;
}
@media screen and (min-width: 950px) {
.subtitle {
width: 60%;
padding-top: 2.5rem;
padding-bottom: 5rem;
}
}