@clayui/css 3.62.1 → 3.63.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/css/atlas.css +5 -5
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +5 -5
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +2 -2
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/no-bot.svg +10 -0
- package/package.json +3 -2
- package/src/images/icons/no-bot.svg +10 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/cadmin/components/_grid.scss +13 -16
- package/src/scss/cadmin/components/_loaders.scss +7 -13
- package/src/scss/cadmin/variables/_globals.scss +24 -0
- package/src/scss/components/_grid.scss +9 -11
- package/src/scss/components/_loaders.scss +7 -13
- package/src/scss/functions/_lx-icons-generated.scss +2 -0
- package/src/scss/variables/_globals.scss +24 -0
- package/CHANGELOG.md +0 -2004
- package/LICENSES/BSD-3-Clause.txt +0 -30
- package/LICENSES/LicenseRef-MIT-Bootstrap.txt +0 -22
- package/LICENSES/MIT.txt +0 -19
package/lib/css/base.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.63.0
|
|
4
4
|
*
|
|
5
5
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
6
6
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -2011,8 +2011,8 @@ input[type=button].btn-block {
|
|
|
2011
2011
|
.container {
|
|
2012
2012
|
margin-left: auto;
|
|
2013
2013
|
margin-right: auto;
|
|
2014
|
-
padding-left:
|
|
2015
|
-
padding-right:
|
|
2014
|
+
padding-left: calc(30px * 0.5);
|
|
2015
|
+
padding-right: calc(30px * 0.5);
|
|
2016
2016
|
width: 100%;
|
|
2017
2017
|
}
|
|
2018
2018
|
@media (min-width: 576px) {
|
|
@@ -2039,8 +2039,8 @@ input[type=button].btn-block {
|
|
|
2039
2039
|
.container-xl, .container-lg, .container-md, .container-sm, .container-fluid {
|
|
2040
2040
|
margin-left: auto;
|
|
2041
2041
|
margin-right: auto;
|
|
2042
|
-
padding-left:
|
|
2043
|
-
padding-right:
|
|
2042
|
+
padding-left: calc(30px * 0.5);
|
|
2043
|
+
padding-right: calc(30px * 0.5);
|
|
2044
2044
|
width: 100%;
|
|
2045
2045
|
}
|
|
2046
2046
|
|