Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AT-UI/at-ui-style
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: argonomogit/at-ui-style
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on May 16, 2018

  1. Verified

    This commit was signed with the committer’s verified signature.
    chris-rock Christoph Hartmann
    Copy the full SHA
    9994685 View commit details
Showing with 594 additions and 591 deletions.
  1. +8 −5 src/core/font.scss
  2. +586 −586 src/variables/default.scss
13 changes: 8 additions & 5 deletions src/core/font.scss
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
/**
* IconFont
*/

$icon-font-path: '.' !default;

@font-face {
font-family: 'feather';
src: url('./fonts/feather.eot?t=1501829003743');
src: url('./fonts/feather.eot?t=1501829003743#iefix') format('embedded-opentype'),
url('./fonts/feather.ttf?t=1501829003743') format('truetype'),
url('./fonts/feather.woff?t=1501829003743') format('woff'),
url('./fonts/feather.svg?t=1501829003743#feather') format('svg');
src: url($icon-font-path + '/fonts/feather.eot?t=1501829003743');
src: url($icon-font-path + '/fonts/feather.eot?t=1501829003743#iefix') format('embedded-opentype'),
url($icon-font-path + '/fonts/feather.ttf?t=1501829003743') format('truetype'),
url($icon-font-path + '/fonts/feather.woff?t=1501829003743') format('woff'),
url($icon-font-path + '/fonts/feather.svg?t=1501829003743#feather') format('svg');
font-weight: normal;
font-size: normal;
}
Loading