Skip to content
Snippets Groups Projects
create-object-dialog.scss 1.14 KiB
@import 'shared';

:local(.addMediaForm) {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
}

:local(.actionButton) {
  @extend %bottom-action-button;
  margin-left: 6px;
  margin-right: 6px;
  appearance: none;
  width: 128px;
  text-align: center;
  -moz-appearance: none;
  -webkit-appearance: none;
}

:local(.buttons) {
  display: flex;
  flex-direction: row;
  align-items: center;
}

:local(.smallButton) {
  padding-left: 0.25em;
  padding-right: 0.5em;
  font-size: 2em;
  align-self: center;
}

:local(.cancelIcon) {
  color: white;
  &:hover {
    color: #FF3D7F
  }
}

:local(.uploadIcon) {
  color: white;
  &:hover {
    color: #2F80ED;
  }
}

:local(.inputBorder) {
  display: flex;
  align-self: stretch;
  justify-content: space-between;
  border: 0.25em solid white;
  border-radius: 1em;
  margin: 1em;
  padding: 0.5em;
  @extend %default-font;
}

:local(.leftSideOfInput) {
  flex-grow: 1;
  border: none;
  white-space: nowrap;
  background: transparent;
  color: white;
  text-align: center;
  align-self: center;
}

:local(.hideFileInput) {
  visibility: hidden;
  position: absolute;
}