-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from fabric-design/new-form
Implemented new form styles
- Loading branch information
Showing
12 changed files
with
144 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
$base-spacing: $space-m; // 16px | ||
$base-spacing: $space-m !default; // 16px | ||
|
||
$primary-color: $heaven !default; | ||
$secondary-color: $earl-gray !default; | ||
|
||
$base-font-family: 'acumin-pro', 'Helvetica Neue', Helvetica, Arial, sans-serif; | ||
$base-font-size: 1rem; // 16px | ||
$base-line-height: 1.5rem; // 24px | ||
$base-font-color: $abbey; | ||
$base-font-family: 'objektiv-mk1', 'acumin-pro', 'Helvetica Neue', Helvetica, Arial, sans-serif !default; | ||
$base-font-size: 1rem !default; // 16px | ||
$base-line-height: 1.5rem !default; // 24px | ||
$base-font-color: $abbey !default; | ||
|
||
// @todo is there a border color we always use? | ||
$base-border-color: $black; | ||
$base-border: 1px solid $base-border-color; | ||
$base-border-radius: 3px; | ||
$base-border-color: $black !default; | ||
$base-border: 1px solid $base-border-color !default; | ||
$base-border-radius: 3px !default; | ||
|
||
// @todo typo variables like font size, line height, and so on has to be defined and reimplemented | ||
$font-size-small: 0.8125rem; // 13px | ||
$font-size-large: 1.5rem; // 24px | ||
$font-size-tiny: 0.6875rem !default; // 11px | ||
$font-size-small: 0.8125rem !default; // 13px | ||
$font-size-large: 1.5rem !default; // 24px |