/* Lesli Copyright (c) 2023, Lesli Technologies, S. A. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. Lesli · Ruby on Rails SaaS Development Framework. Made with ♥ by https://www.lesli.tech Building a better future, one line of code at a time. @contact hello@lesli.tech @website https://www.lesli.tech @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ // · */ .lesli-application-engines { top: 0; width: 100%; height: 100%; position: fixed; z-index: 98; .engines-container { width: 100%; height: 100%; padding: 1.6rem; overflow-y: scroll; margin-top: var(--lesli-header-height); background-color: var(--lesli-color-background); @include lesli-css-scrollbar(hide); .engines { width: 100%; margin: 0 auto; max-width: 1408px; display: flex; flex-wrap: wrap; align-items: center; flex-direction: column; justify-content: center; // engine link a { width: 100%; height: 200px; display: block; text-align: center; padding: 1rem .4rem; margin-bottom: 2rem; border-radius: .5rem; border: transparent 1px solid; box-shadow: $lesli-box-shadow; background-color: lesli-css-color(silver, 100); background-color: #FFFFFF; transition: all ease-in-out .4s; &:hover { border-color: var(--lesli-color-primary); } &.is-active { background-color: #F0F4FF; border-color: var(--lesli-color-primary); } // engine logo svg { margin-right: .4rem; fill: var(--lesli-color-primary); } // engine description p { font-size: 14; } // engine name span { font-weight: 600; font-size: 20px; } span, p { color: var(--lesli-color-primary); } } } // close button button { width: 100%; } } } @include lesli-css-breakpoint-tablet() { .lesli-application-engines .engines-container .engines { flex-direction: row; a { width: 320px; margin: 1rem; } } }