mirror of
https://github.com/woodchen-ink/clash-and-dashboard.git
synced 2025-07-18 14:01:56 +08:00
53 lines
800 B
SCSS
53 lines
800 B
SCSS
@import '~@styles/variables';
|
|
|
|
.proxy-group {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
font-size: 14px;
|
|
color: $color-black-light;
|
|
}
|
|
|
|
.proxy-group-part {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 60px;
|
|
}
|
|
|
|
.proxy-group-name {
|
|
display: flex;
|
|
padding: 0 20px;
|
|
width: 120px;
|
|
}
|
|
|
|
.proxy-group-type {
|
|
display: block;
|
|
height: 24px;
|
|
line-height: 24px;
|
|
width: 100px;
|
|
text-align: center;
|
|
background-color: $color-primary-dark;
|
|
color: #fff;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.proxies-group-card {
|
|
padding: 0;
|
|
}
|
|
|
|
.proxies-group-item {
|
|
border-bottom: 1px solid $color-gray;
|
|
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
.proxy-group-tags-container {
|
|
padding: 15px 0;
|
|
}
|
|
|
|
.proxy-group-tags {
|
|
flex: 1;
|
|
margin-left: 30px;
|
|
}
|