Skip to content
This repository has been archived by the owner on May 12, 2019. It is now read-only.

Commit

Permalink
mixins renamed into utils
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Oct 28, 2015
1 parent af17af5 commit 4747b0a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
%dotted-link {
padding-right: 0.2rem;
padding-left: 0.2rem;
padding-bottom: 2px;
transition: all .5s;

&::after {
position: absolute;
bottom: -.5px;
left: 0;

width: 100%;
height: 0;

content: "";

border-bottom: 1px dashed $primary-color;
}
&:hover {
color: $white;
border-color: $hover-color;
background: $primary-color;
}

&:hover,
&:active {
outline: 0;
}
}

@mixin inline-code-style {
padding: .09rem .2rem;

Expand Down
4 changes: 2 additions & 2 deletions assets/scss/uno-zen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
// PRE
// ------------------------------

@import 'modules/mixins.scss';
@import 'modules/variables.scss';
@import 'modules/utils.scss';

// ------------------------------
// MODULES
// ------------------------------

@import 'modules/reset.scss';
@import 'modules/variables.scss';
@import 'modules/grid.scss';
@import 'modules/global.scss';
@import 'modules/fonts.scss';
Expand Down

0 comments on commit 4747b0a

Please sign in to comment.