Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
Nuovo sito
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
16
Issues
16
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gruppo Web
Nuovo sito
Commits
292c1fa5
Commit
292c1fa5
authored
Nov 29, 2023
by
shadMod
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactoring with ciclo for
parent
b5d21084
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
5 deletions
+14
-5
assets/scss/libs/main.scss
assets/scss/libs/main.scss
+14
-5
No files found.
assets/scss/libs/main.scss
View file @
292c1fa5
...
...
@@ -235,11 +235,20 @@ ul.item-list li {
line-height
:
20px
;
}
.m-25
{
margin
:
25px
;
}
.mx-25
{
margin
:
25px
0
;
@each
$value
in
(
10
,
20
,
25
)
{
$margin_sizes
:
(
""
:
"
#{
$value
}
px"
,
"y"
:
"
#{
$value
}
px 0"
,
"x"
:
"0
#{
$value
}
px"
);
@each
$name
,
$margin
in
$margin_sizes
{
.m
#{
$name
}
-
#{
$value
}
{
margin
:
#{
$margin
}
!
important
;
}
}
$margin_sizes
:
(
"t"
:
"top"
,
"e"
:
"right"
,
"b"
:
"bottom"
,
"s"
:
"left"
);
@each
$name
,
$position
in
$margin_sizes
{
.m
#{
$name
}
-
#{
$value
}
{
margin-
#{
$position
}
:
#{
$value
}
px
!
important
;
}
}
}
.my-25
{
margin
:
0
25px
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment