Skip to content
Snippets Groups Projects
Commit d280fc66 authored by Chris Lawton's avatar Chris Lawton
Browse files

introducing button modifier that reduces padding on mobile for buttons with...

introducing button modifier that reduces padding on mobile for buttons with long titles so they don't break on to multiple lines on smaller screens
parent 6a9cf8c7
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@
<div class="wrapper wrapper--top-bottom-space">
<a class="link link--button" href="{% url "social:begin" "google-oauth2" %}?next={% url "users:account" %}">Log in with your OTF email</a>
<a class="link link--button link--button-long-text" href="{% url "social:begin" "google-oauth2" %}?next={% url "users:account" %}">Log in with your OTF email</a>
</div>
</div>
......
......@@ -17,6 +17,14 @@
}
}
&--button-long-text {
padding: 10px;
@include media-query(tablet-portrait) {
padding: 10px 60px;
}
}
&--underlined {
text-decoration: underline;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment