[improvement] Notify: optimize style (#951)

This commit is contained in:
neverland 2018-11-25 10:40:24 +08:00 committed by GitHub
parent c0e60fcf57
commit 61c95ee94d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* color variables */
// Color variables
@black: #000;
@white: #fff;
@red: #f44;
@ -12,14 +12,14 @@
@gray-darker: #7d7e80;
@gray-dark: #999;
/* default colors */
// Default colors
@text-color: #333;
@border-color: #eee;
@active-color: #e8e8e8;
@background-color: #f8f8f8;
@background-color-light: #fafafa;
/* button */
// Button
@button-default-color: @text-color;
@button-default-background-color: @white;
@button-default-border-color: @border-color;
@ -36,3 +36,8 @@
@button-bottom-action-default-background-color: @orange;
@button-bottom-action-primary-color: @white;
@button-bottom-action-primary-background-color: @red;
// Notify
@notify-padding: 6px 15px;
@notify-font-size: 14px;
@notify-line-height: 20px;

View File

@ -1,13 +1,13 @@
@import '../common/style/var.less';
.van-notify {
z-index: 110;
position: fixed;
top: 0;
width: 100%;
z-index: 110;
color: @white;
position: fixed;
min-height: 32px;
line-height: 2.3;
font-size: 14px;
text-align: center;
box-sizing: border-box;
padding: @notify-padding;
font-size: @notify-font-size;
line-height: @notify-line-height;
}