Repo-view page with header, sidebar and body
This commit is contained in:
parent
b4ace1dd29
commit
0d915eccc4
8 changed files with 311 additions and 11 deletions
10
static/css/directives/components/pages/_mixins.scss
Normal file
10
static/css/directives/components/pages/_mixins.scss
Normal file
|
@ -0,0 +1,10 @@
|
|||
/*
|
||||
A list of useful mixins
|
||||
*/
|
||||
|
||||
@mixin box-shadow($args...) {
|
||||
-webkit-box-shadow: $args;
|
||||
-moz-box-shadow: $args;
|
||||
box-shadow: $args;
|
||||
-o-box-shadow: $args;
|
||||
}
|
Reference in a new issue