Added create short URL form

This commit is contained in:
Alejandro Celaya
2018-07-21 10:38:54 +02:00
parent b2fa86a917
commit d382ee8d95
8 changed files with 129 additions and 3 deletions

View File

@@ -1,5 +1,4 @@
@mixin border-radius($radius) {
border-radius: $radius;
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
}

View File

@@ -0,0 +1,4 @@
@mixin box-shadow($shadow) {
-webkit-box-shadow: $shadow;
box-shadow: $shadow;
}