Skip to content

Commit 8c373ea

Browse files
authored
Merge pull request #227 from makeopensource/fix-fat-button
Fixed weirdly tall buttons on edit assignment and assignment detail pages. This is such a small change I'm just going ahead
2 parents 848bc23 + bdf862a commit 8c373ea

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

devU-client/src/components/pages/assignments/assignmentDetailPage.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
.options_section{
6060
display: flex;
6161
flex-direction: row;
62+
align-items: center;
6263
gap:10px;
6364
justify-content: flex-end;
6465
}

devU-client/src/components/pages/forms/assignments/assignmentUpdatePage.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
.pageHeader{
1111
display: grid;
1212
grid-template-columns: 1fr 2fr 1fr;
13+
align-items: center;
1314
}
1415
.backToCourse{
1516
margin-left: auto;
@@ -162,10 +163,13 @@ input[type='datetime-local'] {
162163
font-size: 14px;
163164
color: #fff;
164165
padding: 5px 15px;
166+
font-style: normal;
165167
max-width: fit-content;
168+
transition: all 0.2s ease;
166169
}
167170
.fileUpload:hover{
168-
background-color: var(--primary);
171+
border: 3px solid var(--hover-darker);
172+
background-color: var(--hover-darker)
169173
}
170174

171175

0 commit comments

Comments
 (0)