Files
housesof/src/style/molecules/_issue.scss
Shelby Kay 3ccfb63188 Create Subscribe page
Create issue css component for past newsletter
2021-10-12 22:41:09 +02:00

36 lines
649 B
SCSS

.issue {
display: flex;
background-color: #fff;
border-radius: 6px;
a {
display: flex;
padding: 20px;
text-decoration: none;
}
// Image
img {
display: block;
width: 80px;
height: 56px;
margin-right: 16px;
}
// Title
dt {
color: $color-secondary;
font-size: rem(20px);
margin-bottom: 8px;
font-family: $font-serif;
font-weight: 400;
}
// Description
dd {
font-size: rem(16px);
color: $color-gray;
}
// Date
time {
opacity: 0.6;
font-size: rem(12px);
}
}