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.

_notice.scss 269B

123456789101112131415
  1. .notice {
  2. position: absolute;
  3. left: 50%;
  4. z-index: $zindex3;
  5. margin-top: 6px;
  6. @include transform(translateX(-50%));
  7. &__message {
  8. background-color: #000000;
  9. color: white;
  10. padding: 3px;
  11. border-radius: 5px;
  12. }
  13. }