mirror of
https://github.com/ipdb/website.git
synced 2024-11-13 16:54:50 +01:00
31 lines
514 B
SCSS
31 lines
514 B
SCSS
@import 'variables';
|
|
|
|
.feature {
|
|
padding-top: $spacer * 2;
|
|
padding-bottom: $spacer * 2;
|
|
min-height: 235px;
|
|
}
|
|
|
|
.feature__image {
|
|
margin: 0;
|
|
background: $brand-05;
|
|
padding: $spacer;
|
|
padding-bottom: 0;
|
|
border-radius: 1rem;
|
|
min-height: 9rem;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
|
|
svg {
|
|
width: 100%;
|
|
height: auto;
|
|
max-width: 100%;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.feature__title {
|
|
font-size: $font-size-h3;
|
|
margin-bottom: $spacer / 2;
|
|
}
|