2024-04-15 17:57:13 +02:00

115 lines
1.7 KiB
SCSS

$primary: #4154f1;
$secondary: #00ffc1;
$text: #212529FF;
$blue: #012970;
@import "~bootstrap/scss/bootstrap";
@import "~tom-select/src/scss/tom-select.scss";
@import "~toastify-js/src/toastify.css";
@import "bootstrap-icons/font/bootstrap-icons.css";
@import "style";
.grow-x-1 {
transition: .3s ease-out;
&:hover {
transform: scaleX(1.01);
}
}
.grow-x-2 {
transition: .3s ease-out;
&:hover {
transform: scaleX(1.02);
}
}
.img-container {
img {
height: auto;
max-width: 100%;
}
}
.delete-button {
color: $danger;
&.selected {
background: $primary;
border-radius: 15px;
padding: 2px;
color: $white;
}
}
input.transparent {
background-color: rgba(0, 0, 0, 0);
border: none;
outline: none;
}
.cursor-pointer {
cursor: pointer;
}
.resource-image {
transition: .3s ease-out;
&:hover {
cursor: pointer;
transform: scale(1.04);
}
&.selected-image {
border: 2px solid #198754FF;
}
}
.sl-slide-holder {
height: 100%;
}
.nav-link.active {
background: $primary;
color: $white;
}
.campaign-card {
padding-top: 0.5rem;
margin-bottom: 15px;
.campaign-link {
color: $text;
}
.campaign-card-body {
transition: .3s ease-out;
&:hover {
cursor: pointer;
transform: scale(1.04);
}
}
}
.card-grow {
transition: .3s ease-out;
&:hover {
transform: scale(1.04);
}
}
.text {
color: $text;
}
@media (min-width: 768px) {
.collapse.dont-collapse-sm {
display: block;
height: auto !important;
visibility: visible;
}
}