@nextcloud/vue
Version:
Nextcloud vue components
54 lines • 1.68 kB
CSS
/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
* Ensure proper alignment of the vue material icons
*/
._material-design-icon_TxQIB {
display: flex;
align-self: center;
justify-self: center;
align-items: center;
justify-content: center;
}
._ncFormBox_BhWbh {
display: flex;
flex-direction: column;
gap: calc(1 * var(--default-grid-baseline));
}
._ncFormBox_BhWbh._ncFormBox_row_F5s-i {
flex-direction: row;
}
._ncFormBox__item_655o7 {
border-radius: var(--border-radius-small) ;
}
._ncFormBox_col_nIEpL {
flex-direction: column;
}
._ncFormBox_col_nIEpL ._ncFormBox__item_655o7:first-child {
border-start-start-radius: var(--border-radius-element) ;
border-start-end-radius: var(--border-radius-element) ;
}
._ncFormBox_col_nIEpL ._ncFormBox__item_655o7:last-child {
border-end-start-radius: var(--border-radius-element) ;
border-end-end-radius: var(--border-radius-element) ;
}
._ncFormBox_row_F5s-i {
flex-direction: row;
}
._ncFormBox_row_F5s-i ._ncFormBox__item_655o7 {
flex: 1 1;
}
._ncFormBox_row_F5s-i ._ncFormBox__item_655o7:first-child {
border-start-start-radius: var(--border-radius-element) ;
border-end-start-radius: var(--border-radius-element) ;
}
._ncFormBox_row_F5s-i ._ncFormBox__item_655o7:last-child {
border-end-end-radius: var(--border-radius-element) ;
border-start-end-radius: var(--border-radius-element) ;
}