您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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