mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-03-31 13:43:33 +03:00
30 lines
641 B
SCSS
30 lines
641 B
SCSS
/*
|
|
* Copyright (C) 2022 Aravinth Manivannan <realaravinth@batsense.net>
|
|
* SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
|
|
*
|
|
* 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;
|
|
}
|