mirror of
https://github.com/edcommonwealth/ecp.org.git
synced 2026-03-10 16:00:27 -07:00
32 lines
494 B
SCSS
32 lines
494 B
SCSS
.grid-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
|
|
.grid-item {
|
|
padding: 20px;
|
|
}
|
|
|
|
.custom-shape-divider-bottom-triangle {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
line-height: 0;
|
|
}
|
|
|
|
.custom-shape-divider-bottom-triangle svg {
|
|
position: relative;
|
|
display: block;
|
|
width: calc(100% + 1.3px);
|
|
height: 72px;
|
|
}
|
|
|
|
.custom-shape-divider-bottom-triangle .shape-fill {
|
|
fill: #FFFFFF;
|
|
}
|
|
|
|
.relative {
|
|
position: relative;
|
|
}
|