presscustomizr / nimble-builder

Powerful yet very simple ( and free 😍 ) WordPress page builder using the native WordPress live customizer. Compatible with any WordPress theme. Used by 50k+ websites .
https://wordpress.org/plugins/nimble-builder/
Other
10 stars 3 forks source link

[button module] add an option to prevent word break #852

Open ghost opened 3 years ago

ghost commented 3 years ago

For the moment here's the default btn style

.sek-module .sek-module-inner .sek-btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.25em;
    text-align: center;
    white-space: normal;
    word-break: break-all;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .5em 1em;
    border-radius: 2px;
    border-width: 2px;
    border-style: solid;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    text-transform: none;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}