Spaces:
				
			
			
	
			
			
		Runtime error
		
	
	
	
			
			
	
	
	
	
		
		
		Runtime error
		
	File size: 749 Bytes
			
			| 6bcb42f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | @import "../../css/colors.css";
@import "../../css/units.css";
@import "../../css/typography.css";
.crash-wrapper {
    background-color: $motion-primary;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
[theme="dark"] .crash-wrapper {
    background-color: $motion-primary-dark;
}
.body {
    width: 50%;
    color: white;
    text-align: center;
}
.reloadButton {
    border: 1px solid $motion-primary;
    border-radius: 0.25rem;
    padding: 0.5rem 2rem;
    background: white;
    color: $motion-primary;
    font-weight: bold;
    font-size: 0.875rem;
    cursor: pointer;
}
.header {
    font-size: 1.5em;
    font-weight: bold;
}
.error-message {
    font-family: monospace;
}
 | 
