mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-27 16:48:47 +00:00
24 lines
717 B
SCSS
24 lines
717 B
SCSS
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
|
|
@mixin turboliftEntryBase() {
|
|
cursor: pointer;
|
|
padding: 10px;
|
|
border-bottom: 1px solid $vte-button-border;
|
|
border-left: 1px solid $vte-button-border;
|
|
border-right: 1px solid $vte-button-border;
|
|
/*font-weight: 700;*/
|
|
}
|
|
|
|
@mixin vtecard() {
|
|
padding: 15px;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
margin-bottom: 15px;
|
|
background-color: $vte-card-bg;
|
|
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
|
|
border-radius: $vte-box-border-radius;
|
|
}
|