| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- .FlexColumn {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .FlexRow {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- }
- .alert-container {
- position: fixed;
- top: 0;
- left:0;
- width: 100%;
- height: 100rpx;
- z-index: 999;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .alert-fadeout {
- animation: fadeOut 1s ease-out forwards;
- }
- @keyframes fadeOut {
- from {
- opacity: 1;
- }
- to {
- opacity: 0;
- }
- }
- .alert-content {
- border-radius: 10rpx;
- height: 70rpx;
- margin: 20rpx 0 0 30rpx;
- padding: 0 30rpx;
- }
- .alert-icon {
- width: 20rpx;
- height: 20rpx;
- }
- .alert-text {
- font-size: 24rpx;
- margin-left: 20rpx;
- }
|