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
9509e650
Commit
9509e650
authored
Nov 29, 2023
by
shadMod
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added: float, display-inline and margin set (missing x and y)
parent
e5d29abc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
1 deletion
+39
-1
assets/scss/vendor/bootstrap_v5.scss
assets/scss/vendor/bootstrap_v5.scss
+39
-1
No files found.
assets/scss/vendor/bootstrap_v5.scss
View file @
9509e650
...
...
@@ -201,3 +201,41 @@ $sizes: (25: "25%", 50: "50%", 75: "75%", 100: "100%", "auto": "auto");
.shadow-none
{
box-shadow
:
none
!
important
;
}
.float-start
{
float
:
left
!
important
;
}
.float-end
{
float
:
right
!
important
;
}
.float-none
{
float
:
none
!
important
;
}
.text-dark
{
color
:
#212529
!
important
;
}
.align-i-center
{
align-items
:
center
!
important
;
}
.d-inline
{
display
:
inline
!
important
;
}
.d-inline-block
{
display
:
inline-block
!
important
;
}
$size_width
:
(
1
:
"0.25rem"
,
2
:
"0.5rem"
,
3
:
"1rem"
,
4
:
"1.5rem"
,
5
:
"3rem"
);
$positions
:
(
""
:
""
,
"t"
:
"-top"
,
"e"
:
"-right"
,
"b"
:
"-bottom"
,
"s"
:
"-left"
);
@each
$nr
,
$width
in
$size_width
{
@each
$name
,
$position
in
$positions
{
.m
#{
$name
}
-
#{
$nr
}
{
margin
#{
$position
}
:
#{
$width
}
!
important
;
}
}
}
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