Базовые компоненты | Кнопки
1. Buttons
amoCRM includes five predefined button styles, each serving its own semantic purpose, with a few extras thrown in for more control.
<button type="button" class="amocrm-btn-primary">Primary</button>
<button type="button" class="amocrm-btn-secondary">Secondary</button>
<button type="button" class="amocrm-btn-dark">Dark</button>
<button type="button" class="amocrm-btn-light">Light</button>
<button type="button" class="amocrm-btn-link">Link</button>
1.1. Outline buttons
In need of a button, but not the hefty background colors they bring? Replace the default modifier classes with the .amocrm-btn-outline-*
ones to remove all background images and colors on any button.
<button type="button" class="amocrm-btn-outline-primary">Primary</button>
<button type="button" class="amocrm-btn-outline-dark">Dark</button>
ext
1.1. Sizes Fancy larger or smaller buttons? Add .amocrm-btn-lg
or .amocrm-btn-sm
for additional sizes.
<button type="button" class="amocrm-btn-primary amocrm-btn-lg">Large button</button>
<button type="button" class="amocrm-btn-primary amocrm-btn-sm">Small button</button>