browser/components/backup/content/disable-backup-encryption.css

Propagation: 100%

Back to Home

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */

@import url("chrome://global/skin/in-content/common.css");

#backup-disable-encryption-wrapper {
  display: grid;
  grid-template-areas:
    "header"
    "content"
    "button-group";
  grid-template-rows: auto auto auto;
}

#backup-disable-encryption-header {
  grid-area: header;
  margin: 0;
}

#backup-disable-encryption-content {
  display: flex;
  flex-direction: column;
  grid-area: content;
  margin-block-start: var(--space-small);
  margin-block-end: var(--space-large);
  row-gap: var(--space-large);
}

#backup-disable-encryption-button-group {
  grid-area: button-group;
}
Back to Home