Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

_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. }