1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 08:39:27 +00:00

Added styling for test page

This commit is contained in:
2022-03-06 20:42:38 +00:00
parent a32a8062f8
commit 9e1894fe27
2 changed files with 27 additions and 0 deletions

View File

@@ -25,3 +25,4 @@
@import 'pages/classes'; @import 'pages/classes';
@import 'pages/tests'; @import 'pages/tests';
@import 'pages/class'; @import 'pages/class';
@import 'pages/test';

View File

@@ -0,0 +1,26 @@
.testPage {
&__testResultWrapper {
@include space-contents;
}
&__testResult {
display: flex;
align-items: center;
gap: 1rem;
&__grade {
background: #ddd;
color: $secondary-colour;
padding: 1rem;
border-radius: 10px;
font-weight: bold;
font-size: 1.5em;
}
&__score {
display: flex;
flex-direction: column;
align-items: center;
}
}
}