browser/components/profiles/content/profile-selector.css

Propagation: 75%

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 http://mozilla.org/MPL/2.0/. */

body {
  display: flex;
  justify-content: center;
}

profile-selector {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 8%;
}

.logo {
  width: 64px;
  height: 64px;
}

.profiles-body-text {
  width: 70%;
  text-align: center;
}

.profile-list {
  width: 100%;
  max-height: 400px;
  overflow: auto;
  padding: var(--space-small);
  margin: var(--space-xxlarge) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xxlarge);
}
Back to Home