production-taskbar-client / src / renderer / features / info / notification_bar / NotificationBar.less
NotificationBar.less
Raw
@import "../../../app/vars.less";

.notification {
  width: 100%;
  min-height: 19vh;
  flex: 1;
}

.notification__title {
  font-size: 11vh;
  text-align: center;
}

.notification__title_info {
  background-color: @info-color;
  color: @background-color !important;
}

.notification__title_success {
  background-color: @success-color;
  color: @background-color !important;
}

.notification__title_warning {
  background-color: @warning-color;
  color: @background-color !important;
}

.notification__title_error {
  background-color: @error-color;
  color: @background-color !important;
}

.progressbar {
  background: @accent-color;
  height: 2px;
}