turn-off-scheduled-backups.css (792B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ 4 5 @import url("chrome://global/skin/in-content/common.css"); 6 7 #backup-turn-off-scheduled-wrapper { 8 display: grid; 9 grid-template-areas: 10 "header" 11 "content" 12 "button-group"; 13 grid-template-rows: auto auto auto; 14 } 15 16 #backup-turn-off-scheduled-header { 17 grid-area: header; 18 margin: 0; 19 } 20 21 #backup-turn-off-scheduled-content { 22 display: flex; 23 flex-direction: column; 24 grid-area: content; 25 margin-block-start: var(--space-small); 26 margin-block-end: var(--space-large); 27 row-gap: var(--space-large); 28 } 29 30 #backup-turn-off-scheduled-button-group { 31 grid-area: button-group; 32 }