Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
c71b291c
Commit
c71b291c
authored
6 years ago
by
Florian Lacreuse
Committed by
XhmikosR
6 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Remove unnecessary brackets for consistency (#27966)
parent
6813653b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scss/_variables.scss
+5
-5
scss/_variables.scss
with
5 additions
and
5 deletions
+5
-5
scss/_variables.scss
+
5
-
5
View file @
c71b291c
...
...
@@ -281,8 +281,8 @@ $font-family-base: $font-family-sans-serif !default;
// stylelint-enable value-keyword-case
$font-size-base
:
1rem
!
default
;
// Assumes the browser default, typically `16px`
$font-size-lg
:
(
$font-size-base
*
1
.25
)
!
default
;
$font-size-sm
:
(
$font-size-base
*
.875
)
!
default
;
$font-size-lg
:
$font-size-base
*
1
.25
!
default
;
$font-size-sm
:
$font-size-base
*
.875
!
default
;
$font-weight-lighter
:
lighter
!
default
;
$font-weight-light
:
300
!
default
;
...
...
@@ -317,7 +317,7 @@ $display3-weight: 300 !default;
$display4-weight
:
300
!
default
;
$display-line-height
:
$headings-line-height
!
default
;
$lead-font-size
:
(
$font-size-base
*
1
.25
)
!
default
;
$lead-font-size
:
$font-size-base
*
1
.25
!
default
;
$lead-font-weight
:
300
!
default
;
$small-font-size
:
80%
!
default
;
...
...
@@ -326,7 +326,7 @@ $text-muted: $gray-600 !default;
$blockquote-small-color
:
$gray-600
!
default
;
$blockquote-small-font-size
:
$small-font-size
!
default
;
$blockquote-font-size
:
(
$font-size-base
*
1
.25
)
!
default
;
$blockquote-font-size
:
$font-size-base
*
1
.25
!
default
;
$hr-border-color
:
rgba
(
$black
,
.1
)
!
default
;
$hr-border-width
:
$border-width
!
default
;
...
...
@@ -960,7 +960,7 @@ $alert-color-level: 6 !default;
// Progress bars
$progress-height
:
1rem
!
default
;
$progress-font-size
:
(
$font-size-base
*
.75
)
!
default
;
$progress-font-size
:
$font-size-base
*
.75
!
default
;
$progress-bg
:
$gray-200
!
default
;
$progress-border-radius
:
$border-radius
!
default
;
$progress-box-shadow
:
inset
0
.1rem
.1rem
rgba
(
$black
,
.1
)
!
default
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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