Edit profile button

This commit is contained in:
reverend 2020-12-25 16:42:39 +01:00
parent b4fba7b3f0
commit 799b9b2eff
3 changed files with 18 additions and 1 deletions

View File

@ -7,7 +7,17 @@
font-weight: bold;
cursor: pointer;
white-space: nowrap;
&--fullWidth {
text-align: center;
}
&.LP-Link {
display: block;
&:hover {
color: $-almost-white
}
}
&:active {
background-color: $-wine-red;
color: $-almost-white;
@ -22,4 +32,4 @@
background-color: $-almost-white;
}
}
}
}

View File

@ -40,5 +40,6 @@
</td>
</tr>
</table>
<a href="#" class="LP-Button LP-Button--fullWidth LP-Link">Edit profile</a>
</div>
</div>

View File

@ -611,6 +611,12 @@ body {
font-weight: bold;
cursor: pointer;
white-space: nowrap; }
.LP-Button--fullWidth {
text-align: center; }
.LP-Button.LP-Link {
display: block; }
.LP-Button.LP-Link:hover {
color: #f9f9f9; }
.LP-Button:active {
background-color: #76323F;
color: #f9f9f9; }