Skip to content
This repository was archived by the owner on Dec 11, 2021. It is now read-only.

Buttons: Initial pass at buttons, covering sizes, options, disabled, active, focus, and hover states #97

Closed
wants to merge 17 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Buttons: Adjusting rounded corner variable
  • Loading branch information
sfrisk committed Aug 18, 2015
commit e74e4db5aa1f36403e5bd6375435da5a43f11a67
8 changes: 4 additions & 4 deletions scss/variables/buttons.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ chassis.uiButton = {
"ui-button-large": {
name: "Large Button",
value: {
"border-radius": "6px",
"border-radius": "2px",
"font-size": "16px",
"line-height": "16px",
"padding": ".75em 1.25em"
Expand All @@ -90,7 +90,7 @@ chassis.uiButton = {
"ui-button-default": {
name: "Default Button",
value: {
"border-radius": "4px",
"border-radius": "2px",
"font-size": "14px",
"line-height": "14px",
"padding": ".5em 1em"
Expand All @@ -99,7 +99,7 @@ chassis.uiButton = {
"ui-button-small": {
name: "Small Button",
value: {
"border-radius": "3px",
"border-radius": "2px",
"font-size": "12px",
"line-height": "12px",
"padding": ".35em .75em"
Expand All @@ -108,7 +108,7 @@ chassis.uiButton = {
"ui-button-extra-small": {
name: "Extra Small Button",
value: {
"border-radius": "3px",
"border-radius": "2px",
"font-size": "12px",
"line-height": "12px",
"padding": ".2em .35em"
Expand Down