25 lines
No EOL
373 B
SCSS
25 lines
No EOL
373 B
SCSS
// assets/styles/global.scss
|
|
|
|
// customize some Bootstrap variables
|
|
$primary: darken(#428bca, 20%);
|
|
|
|
// the ~ allows you to reference things in node_modules
|
|
@import "~bootstrap/scss/bootstrap";
|
|
|
|
.offering > img {
|
|
height: 15rem;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.offering {
|
|
$card-height: 100%;
|
|
width: 20rem;
|
|
}
|
|
|
|
.username {
|
|
float: left;
|
|
}
|
|
|
|
.zip {
|
|
float: right;
|
|
} |