v2 first commit

This commit is contained in:
denisdulici
2019-11-16 10:21:14 +03:00
parent 5b23e9c2c4
commit 6d50fa8442
3075 changed files with 3451681 additions and 65594 deletions

View File

@ -0,0 +1,31 @@
//
// Grid
//
// Example row
.row-example {
> .col,
> [class^="col-"] {
span {
display: block;
padding: .75rem;
color: rgb(57, 63, 73);
background-color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 4px 16px;
font-size: $font-size-sm;
border-radius: .25rem;
margin: 1rem 0;
}
}
}
.no-gutters {
> .col,
> [class^="col-"] {
span {
border-radius: 0;
}
}
}