Fix/divide (#3362)

* Use custom divide function

* Add docs spacing table styles

* Update changelog
This commit is contained in:
Jeremy Thomas
2021-06-18 18:27:34 +01:00
committed by GitHub
parent 1239ac857c
commit d6d32e8050
22 changed files with 516 additions and 294 deletions

View File

@@ -325,7 +325,6 @@ html {
text-rendering: optimizeLegibility;
-webkit-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}
@@ -1784,8 +1783,8 @@ fieldset[disabled] .button {
.button.is-loading::after {
position: absolute;
left: calc(50% - (1em / 2));
top: calc(50% - (1em / 2));
left: calc(50% - (1em * 0.5));
top: calc(50% - (1em * 0.5));
position: absolute !important;
}
@@ -2184,11 +2183,11 @@ fieldset[disabled] .button {
}
.icon-text .icon:not(:last-child) {
margin-right: 0.25em;
margin-left: 0.25em;
}
.icon-text .icon:not(:first-child) {
margin-left: 0.25em;
margin-right: 0.25em;
}
div.icon-text {
@@ -9734,6 +9733,36 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
margin-bottom: 3rem !important;
}
.m-auto {
margin: auto !important;
}
.mt-auto {
margin-top: auto !important;
}
.mr-auto {
margin-right: auto !important;
}
.mb-auto {
margin-bottom: auto !important;
}
.ml-auto {
margin-left: auto !important;
}
.mx-auto {
margin-left: auto !important;
margin-right: auto !important;
}
.my-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.p-0 {
padding: 0 !important;
}
@@ -9944,6 +9973,36 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
padding-bottom: 3rem !important;
}
.p-auto {
padding: auto !important;
}
.pt-auto {
padding-top: auto !important;
}
.pr-auto {
padding-right: auto !important;
}
.pb-auto {
padding-bottom: auto !important;
}
.pl-auto {
padding-left: auto !important;
}
.px-auto {
padding-left: auto !important;
padding-right: auto !important;
}
.py-auto {
padding-top: auto !important;
padding-bottom: auto !important;
}
.is-size-1 {
font-size: 3rem !important;
}
@@ -10364,6 +10423,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
font-style: italic !important;
}
.is-underlined {
text-decoration: underline !important;
}
.has-text-weight-light {
font-weight: 300 !important;
}
@@ -10888,6 +10951,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
}
.hero.is-white .tabs li.is-active a {
color: white !important;
opacity: 1;
}
@@ -10966,6 +11030,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
}
.hero.is-black .tabs li.is-active a {
color: #0a0a0a !important;
opacity: 1;
}
@@ -11044,6 +11109,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
}
.hero.is-light .tabs li.is-active a {
color: whitesmoke !important;
opacity: 1;
}
@@ -11122,6 +11188,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
}
.hero.is-dark .tabs li.is-active a {
color: #363636 !important;
opacity: 1;
}
@@ -11200,6 +11267,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
}
.hero.is-primary .tabs li.is-active a {
color: #00d1b2 !important;
opacity: 1;
}
@@ -11278,6 +11346,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
}
.hero.is-link .tabs li.is-active a {
color: #485fc7 !important;
opacity: 1;
}
@@ -11356,6 +11425,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
}
.hero.is-info .tabs li.is-active a {
color: #3e8ed0 !important;
opacity: 1;
}
@@ -11434,6 +11504,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
}
.hero.is-success .tabs li.is-active a {
color: #48c78e !important;
opacity: 1;
}
@@ -11512,6 +11583,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
}
.hero.is-warning .tabs li.is-active a {
color: #ffe08a !important;
opacity: 1;
}
@@ -11590,6 +11662,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
}
.hero.is-danger .tabs li.is-active a {
color: #f14668 !important;
opacity: 1;
}