Skip to content

Commit 095736e

Browse files
Changed min button size to 6em, this should be turned into a variable.
Removed btn-lg class from event button.
1 parent eff897a commit 095736e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

_sass/buttons.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
background: $button-background;
55
color: $button-text;
66
border: $button-border;
7-
min-width: 30%;
7+
min-width: 6em;
88
transition: all 0.5s ease-in-out;
99
&:hover {
1010
color: $button-text-hover;
@@ -19,7 +19,7 @@
1919
background: transparent;
2020
color: $black;
2121
border: $black 1px solid;
22-
min-width: 30%;
22+
min-width: 6em;
2323
transition: all 0.5s ease-in-out;
2424
&:hover {
2525
color: $orange;

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ <h2 class="upcoming__event-subtitle"> {{ post.subtitle }}</h2>
9191
</div>
9292
<div class="upcoming__link-col col-6">
9393
<a class="upcoming__link" href="{{ post.url }}">
94-
<button class="button-minimal btn btn-lg">
94+
<button class="button-minimal btn">
9595
<i class="upcoming__button-icon fas fa-info-circle"></i>
9696
</button>
9797
</a>

0 commit comments

Comments
 (0)