12345678910111213141516171819202122 |
- /* components/l-notify/index.wxss */
- .box {
- position: fixed;
- width: 100%;
- z-index: 10;
- background-color: #fff;
- }
- .container {
- width: 100%;
- text-align: center;
- color: #fff;
- padding: 10rpx 5rpx;
- }
- .success {
- background-color: var(--themeSuccess);
- }
- .warm {
- background-color: var(--themeWarm);
- }
- .danger {
- background-color: var(--themeDanger);
- }
|