Reinit project

This commit is contained in:
Limo Saplf
2019-08-31 20:44:15 +08:00
commit b51ae824c7
115 changed files with 20955 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
@import '../../global.less';
.item {
background-color: #fff;
padding: 10px 20px;
display: flex;
flex-direction: row;
align-items: center;
transition: background-color .2s;
user-select: none;
&:active {
background-color: @bg-color;
}
}
.title {
@titleWidth: 80px;
// flex-basis: @titleWidth;
min-width: @titleWidth;
}
.message {
flex-grow: 1;
flex-basis: 0;
margin: 0 10px;
color: @primary-color;
}
.preview {
flex-grow: 1;
flex-basis: 0;
margin: 0 10px;
color: @hint-color;
text-align: right;
}
.go {
flex-shrink: 0;
color: lightgrey;
font-size: 1.2rem;
}