index.less 359 B

12345678910111213141516171819202122
  1. /* components/l-notify/index.wxss */
  2. .box{
  3. position: fixed;
  4. width: 100%;
  5. z-index: 10;
  6. background-color: #fff;
  7. }
  8. .container{
  9. width: 100%;
  10. text-align: center;
  11. color: #fff;
  12. padding: 10rpx 5rpx;
  13. }
  14. .success{
  15. background-color: var(--themeSuccess);
  16. }
  17. .warm{
  18. background-color: var(--themeWarm);
  19. }
  20. .danger{
  21. background-color: var(--themeDanger);
  22. }