/* * Copyright (C) 2022 Aravinth Manivannan * SPDX-FileCopyrightText: 2023 Aravinth Manivannan * * SPDX-License-Identifier: AGPL-3.0-or-later */ @import '../vars'; @mixin box-title { padding-left: 10px; font-size: 1rem; padding: 0.75rem 1.25rem; box-sizing: border-box; text-align: left; width: 100%; border-bottom: 0.1px solid $light-grey; } @mixin box { display: flex; flex-direction: column; width: 90%; justify-content: center; align-items: center; // box-sizing: content-box; background-color: $white; margin: auto; padding-bottom: 30px; }