mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-04-04 23:53:28 +03:00
15 lines
365 B
SCSS
15 lines
365 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
|
|
*/
|
|
|
|
@mixin inner-container {
|
|
display: flex;
|
|
box-sizing: border-box;
|
|
max-width: 50%;
|
|
margin: 50px auto;
|
|
border-radius: 5px;
|
|
flex-direction: column;
|
|
}
|