123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- @charset "UTF-8";
- /**
- * 下方引入的为Tuniao UI的集成样式文件,为scss预处理器,其中包含了一些"tn-"开头的自定义变量
- * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
- * Tuniao UI自定义的css类名和scss变量,均以"tn-"开头,不会造成冲突,请放心使用
- */
- .uni-popup-dialog {
- width: 300px;
- border-radius: 11px;
- background-color: #fff;
- }
- .uni-dialog-title {
- display: flex;
- flex-direction: row;
- justify-content: center;
- padding-top: 25px;
- }
- .uni-dialog-title-text {
- font-size: 16px;
- font-weight: 500;
- }
- .uni-dialog-content {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- padding: 20px;
- }
- .uni-dialog-content-text {
- font-size: 14px;
- color: #6C6C6C;
- }
- .uni-dialog-button-group {
- display: flex;
- flex-direction: row;
- border-top-color: #f5f5f5;
- border-top-style: solid;
- border-top-width: 1px;
- }
- .uni-dialog-button {
- display: flex;
- flex: 1;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- height: 45px;
- }
- .uni-border-left {
- border-left-color: #f0f0f0;
- border-left-style: solid;
- border-left-width: 1px;
- }
- .uni-dialog-button-text {
- font-size: 16px;
- color: #333;
- }
- .uni-button-color {
- color: #007aff;
- }
- .uni-dialog-input {
- flex: 1;
- font-size: 14px;
- border: 1px #eee solid;
- height: 40px;
- padding: 0 10px;
- border-radius: 5px;
- color: #555;
- }
- .uni-popup__success {
- color: #4cd964;
- }
- .uni-popup__warn {
- color: #f0ad4e;
- }
- .uni-popup__error {
- color: #dd524d;
- }
- .uni-popup__info {
- color: #909399;
- }
|