Commit 01847af

Stephen Peasley <s@stephenpeasley.com>
2015-01-27 14:47:40
Add ternary button class
1 parent 7b1d7aa
Changed files (2)
app
assets
stylesheets
views
registrations
app/assets/stylesheets/global.scss
@@ -0,0 +1,7 @@
+/* ---------------------------------------------- */
+/* Buttons -------------------------------------- */
+/* ---------------------------------------------- */
+.ternary {
+	@extend .button.small.secondary.radius;
+	background-color: transparent;
+}
\ No newline at end of file
app/views/registrations/new.html.erb
@@ -23,7 +23,7 @@
   </div> <!-- /.small-12 -->
   <div class="small-12 columns">
     <%= f.submit t('.register_button'), class: "button"  %>
-    <p><%= link_to t('.login_link'), new_session_path, class: "button secondary" %></p>
+    <p><%= link_to t('.login_link'), new_session_path, class: "button ternary" %></p>
   </div> <!-- /.small-12 -->
 <% end %>
 </div> <!-- /.row -->