1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-07-02 20:30:27 +00:00

Decrease button width on different breakpoints

This commit is contained in:
Aleksandr Gumroian 2020-07-22 16:07:41 +02:00
parent 9be880aeaa
commit f9cfb248d3
No known key found for this signature in database
GPG Key ID: 9E77849C64F0A733

View File

@ -29,7 +29,7 @@ export function Button({
}) { }) {
let buttonClass = className ? `btn ${className}` : "btn btn-primary "; let buttonClass = className ? `btn ${className}` : "btn btn-primary ";
if (forisFormSize) { if (forisFormSize) {
buttonClass = `${buttonClass} col-sm-12 col-lg-3`; buttonClass = `${buttonClass} col-sm-12 col-md-3 col-lg-2`;
} }
const span = loading const span = loading