@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/atlas.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>
|
|
@@ -2027,8 +2027,8 @@ input[type=button].btn-block {
|
|
|
2027
2027
|
.container {
|
|
2028
2028
|
margin-left: auto;
|
|
2029
2029
|
margin-right: auto;
|
|
2030
|
-
padding-left:
|
|
2031
|
-
padding-right:
|
|
2030
|
+
padding-left: calc(24px * 0.5);
|
|
2031
|
+
padding-right: calc(24px * 0.5);
|
|
2032
2032
|
width: 100%;
|
|
2033
2033
|
}
|
|
2034
2034
|
@media (min-width: 576px) {
|
|
@@ -2055,8 +2055,8 @@ input[type=button].btn-block {
|
|
|
2055
2055
|
.container-xl, .container-lg, .container-md, .container-sm, .container-fluid {
|
|
2056
2056
|
margin-left: auto;
|
|
2057
2057
|
margin-right: auto;
|
|
2058
|
-
padding-left:
|
|
2059
|
-
padding-right:
|
|
2058
|
+
padding-left: calc(24px * 0.5);
|
|
2059
|
+
padding-right: calc(24px * 0.5);
|
|
2060
2060
|
width: 100%;
|
|
2061
2061
|
}
|
|
2062
2062
|
|