2018-06-13 14:05:20 -04:00
|
|
|
@import "../../colors";
|
|
|
|
|
|
|
|
.extension-chip {
|
|
|
|
display: flex;
|
2018-06-13 14:53:26 -04:00
|
|
|
margin: 0 .625rem .625rem 0;
|
2018-06-13 14:05:20 -04:00
|
|
|
border-radius: 5px;
|
|
|
|
background-color: $ui-blue-25percent;
|
2018-06-20 10:25:00 -04:00
|
|
|
padding: .625rem;
|
|
|
|
height: 3rem;
|
|
|
|
flex-flow: row;
|
|
|
|
box-sizing: border-box;
|
2018-12-12 15:56:18 -05:00
|
|
|
align-items: center;
|
2018-06-13 14:05:20 -04:00
|
|
|
|
|
|
|
&.has-status {
|
|
|
|
background-color: $ui-orange-25percent;
|
|
|
|
}
|
|
|
|
|
2018-06-13 15:24:19 -04:00
|
|
|
.extension-icon {
|
2018-06-20 10:25:00 -04:00
|
|
|
margin-right: 5px;
|
2018-06-13 15:24:19 -04:00
|
|
|
width: 2rem;
|
|
|
|
height: 2rem;
|
|
|
|
}
|
|
|
|
|
2018-06-13 14:05:20 -04:00
|
|
|
.extension-content {
|
|
|
|
display: flex;
|
2018-06-13 15:24:19 -04:00
|
|
|
margin: 0 5px;
|
|
|
|
font-size: .875rem;
|
2018-06-20 10:25:00 -04:00
|
|
|
justify-content: center;
|
|
|
|
flex-flow: column;
|
2018-09-24 11:50:44 -04:00
|
|
|
align-items: flex-start;
|
2018-06-13 15:24:19 -04:00
|
|
|
}
|
|
|
|
|
2018-06-20 10:25:00 -04:00
|
|
|
.extension-status {
|
2018-06-13 15:24:19 -04:00
|
|
|
border-radius: 10px;
|
|
|
|
background-color: $ui-orange;
|
2018-06-20 10:25:00 -04:00
|
|
|
padding: 0 5px;
|
|
|
|
text-align: center;
|
|
|
|
color: $ui-white;
|
|
|
|
font-size: .675rem;
|
2018-06-13 14:05:20 -04:00
|
|
|
}
|
2018-06-20 10:25:00 -04:00
|
|
|
}
|