Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_shadow.scss 242 B

123456789
  1. // Component focus shadow
  2. @mixin control-shadow($color: $primary-color) {
  3. box-shadow: 0 0 0 .1rem rgba($color, .2);
  4. }
  5. // Shadow mixin
  6. @mixin shadow-variant($offset) {
  7. box-shadow: 0 $offset ($offset + .05rem) * 2 rgba($dark-color, .3);
  8. }