-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
smartbooster/sandbox#25 : add style for vichuploader form field
- Loading branch information
1 parent
a804a8e
commit 028e5e2
Showing
2 changed files
with
22 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
//Smart content Bundle | ||
.vich-image { | ||
display: flex; | ||
flex-direction: column; | ||
|
||
img { | ||
max-width: 100%; | ||
max-height: 150px; | ||
border: 1px solid $gray; | ||
padding: 5px; | ||
margin-bottom: 15px; | ||
} | ||
a:not(:nth-child(3n)) { | ||
padding-left: 5px; | ||
&::before { | ||
font: normal normal normal 14px/1 FontAwesome; | ||
content: "\f019"; | ||
margin-right: 5px; | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -11,3 +11,4 @@ | |
@import "skin"; | ||
@import "login"; | ||
@import "layout"; | ||
@import "image"; |