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

Bug fix on test page: column order, mobile spacing

This commit is contained in:
2022-02-06 23:20:13 +00:00
parent b6e43df0e3
commit e7278e6ad4
4 changed files with 16 additions and 8 deletions

View File

@@ -23,3 +23,4 @@
@import 'pages/index';
@import 'pages/dashboard';
@import 'pages/classes';
@import 'pages/tests';

View File

@@ -1,7 +1,7 @@
.adminContent {
min-height: 91vh;
background-color: $admin-bg;
padding: .5rem 2rem 0 2rem;
padding: .5rem 1rem 0 1rem;
.dashboard__stats {
display: grid;

View File

@@ -0,0 +1,7 @@
.tests {
table {
th, td {
overflow-wrap: anywhere;
}
}
}

View File

@@ -6,51 +6,51 @@
<thead>
<tr>
<th>Name</th>
<th>Subject</th>
<th>Class</th>
<th>Subject</th>
<th>Date</th>
</tr>
</thead>
{{> test
id='1'
name='Organic Synthesis'
subject='Chemistry'
class='MKA_133'
subject='Chemistry'
date='01/08/2021'
}}
{{> test
id='2'
name='Organic Synthesis'
subject='Chemistry'
class='MKA_133'
subject='Chemistry'
date='01/08/2021'
}}
{{> test
id='3'
name='Organic Synthesis'
subject='Chemistry'
class='MKA_133'
subject='Chemistry'
date='01/08/2021'
}}
{{> test
id='4'
name='Organic Synthesis'
subject='Chemistry'
class='MKA_133'
subject='Chemistry'
date='01/08/2021'
}}
{{> test
id='5'
name='Organic Synthesis'
subject='Chemistry'
class='MKA_133'
subject='Chemistry'
date='01/08/2021'
}}
{{> test
id='6'
name='Organic Synthesis'
subject='Chemistry'
class='MKA_133'
subject='Chemistry'
date='01/08/2021'
}}
</table>