12345678910111213141516171819202122232425262728293031 |
- // /**
- // * Copyright © Magento, Inc. All rights reserved.
- // * See COPYING.txt for license details.
- // */
- //
- // Common
- // _____________________________________________
- & when (@media-common = true) {
- // Using buttons mixins
- button,
- a.action.primary {
- .lib-css(border-radius, @button__border-radius);
- }
- button {
- &:active {
- .lib-css(box-shadow, @button__shadow);
- }
- }
- a.action.primary {
- .lib-link-as-button();
- }
- .action.primary {
- .lib-button-primary();
- }
- }
|