mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-01-07 04:52:13 -05:00
23 lines
372 B
SCSS
23 lines
372 B
SCSS
|
.crash-container {
|
||
|
@import "../../colors";
|
||
|
@import "../../frameless";
|
||
|
|
||
|
margin: 3rem auto;
|
||
|
|
||
|
border: 1px solid $ui-border;
|
||
|
border-radius: 10px;
|
||
|
background-color: $background-color;
|
||
|
width: 60%;
|
||
|
overflow: hidden;
|
||
|
text-align: center;
|
||
|
|
||
|
img {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.crash-message {
|
||
|
margin: 2rem;
|
||
|
}
|
||
|
|
||
|
}
|