BetterDiscordApp-v2/client/src/styles/partials/modals/permission-modal.scss

53 lines
1.3 KiB
SCSS
Raw Normal View History

2018-08-15 04:03:56 +02:00
.bd-permScope {
2018-02-28 20:34:12 +01:00
display: flex;
2018-08-15 04:03:56 +02:00
.bd-permAllow {
2018-02-28 20:34:12 +01:00
display: flex;
flex: 1;
2018-08-15 04:03:56 +02:00
.bd-permCheck {
2018-02-28 20:34:12 +01:00
-webkit-box-sizing: border-box;
2018-08-15 11:42:43 +02:00
background: hsla(0, 0%, 100%, .2);
2018-02-28 20:34:12 +01:00
border-radius: 18px;
box-sizing: border-box;
height: 36px;
margin-right: 20px;
margin-top: 14px;
padding: 2px;
width: 36px;
2018-08-15 04:03:56 +02:00
.bd-permCheckInner {
2018-02-28 20:34:12 +01:00
background-color: #43b581;
border: 2px solid #35383c;
border-radius: 16px;
box-sizing: border-box;
height: 32px;
width: 32px;
}
}
2018-08-15 04:03:56 +02:00
.bd-permInner {
2018-02-28 20:34:12 +01:00
display: flex;
flex: 1;
flex-direction: column;
justify-content: center;
min-height: 45px;
padding: 13px 0;
2018-08-15 11:42:43 +02:00
border-bottom: 1px solid hsla(0, 0%, 100%, .1);
2018-02-28 20:34:12 +01:00
2018-08-15 04:03:56 +02:00
.bd-permName {
2018-02-28 20:34:12 +01:00
color: #fff;
font-size: 17px;
font-weight: 500;
line-height: 22px;
}
2018-08-15 04:03:56 +02:00
.bd-permDesc {
2018-08-15 11:42:43 +02:00
color: hsla(0, 0%, 100%, .2);
2018-02-28 20:34:12 +01:00
font-size: 12px;
line-height: 15px;
}
}
}
}