41 lines
402 B
SCSS
41 lines
402 B
SCSS
// 圆角
|
|
.rounded-4 {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.rounded-5 {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.rounded-6 {
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.rounded-8 {
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.rounded-10 {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.rounded-12 {
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.rounded-16 {
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.rounded-20 {
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.rounded-50 {
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.rounded-full {
|
|
border-radius: 50%;
|
|
}
|