mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2025-05-13 10:10:56 +02:00
13 lines
410 B
JavaScript
13 lines
410 B
JavaScript
/*
|
|
* Copyright (C) 2019-2024 CZ.NIC z.s.p.o. (https://www.nic.cz/)
|
|
*
|
|
* This is free software, licensed under the GNU General Public License v3.
|
|
* See /LICENSE for more information.
|
|
*/
|
|
|
|
/** Bootstrap column size for form fields */
|
|
const formFieldsSize = "card p-4 col-sm-12 col-lg-12 p-0 mb-4";
|
|
const buttonFormFieldsSize = "col-sm-12 col-lg-12 p-0 mb-3";
|
|
|
|
export { formFieldsSize, buttonFormFieldsSize };
|