Files
fe-student/src/assets/scss/common.scss
2022-09-15 09:07:55 +08:00

49 lines
960 B
SCSS

html,
body {
height: 100vh;
margin: 0;
padding: 0;
// overflow-y: auto;
}
//标签tag样式-----------------------------------------------------------------
// 必修
.tag1{
width: 80px;
height: 26px;
background: linear-gradient(90deg, #84aad2 0%, #a4c5e9 100%);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 500;
color: #ffffff;
}
// 在线
.tag2{
width: 78px;
height: 24px;
border: 1px solid #85AAD2;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 500;
color: #85AAD2;
}
// 标签
.tag3{
width: 78px;
height: 24px;
border: 1px solid rgba(255, 185, 109, 1);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 500;
color: rgba(255, 185, 109, 1);
}
//标签tag样式-----------------------------------------------------------------