1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 22:59: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/index';
@import 'pages/dashboard'; @import 'pages/dashboard';
@import 'pages/classes'; @import 'pages/classes';
@import 'pages/tests';

View File

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

View File

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

View File

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