mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-14 01:31:05 -05:00
22 lines
429 B
SCSS
22 lines
429 B
SCSS
|
@import "../../colors";
|
||
|
|
||
|
.extension-chip {
|
||
|
box-sizing: border-box;
|
||
|
display: flex;
|
||
|
flex-flow: row;
|
||
|
padding: 10px;
|
||
|
height: 48px;
|
||
|
border-radius: 5px;
|
||
|
background-color: $ui-blue-25percent;
|
||
|
|
||
|
&.has-status {
|
||
|
background-color: $ui-orange-25percent;
|
||
|
}
|
||
|
|
||
|
.extension-content {
|
||
|
display: flex;
|
||
|
flex-flow: column;
|
||
|
justify-content: center;
|
||
|
margin-left: 5px;
|
||
|
}
|
||
|
}
|