1
0
mirror of https://github.com/quay/quay.git synced 2026-01-26 06:21:37 +03:00
Files
quay/static/css/directives/ui/new-ui-toggle.css
Brandon Caton 9637201903 ui: Fix font size in superuser page (PROJQUAY-4407) (#1553)
Recent CSS changes caused the font size in the superuser panel to increase in size. This change resolves those issues.
2022-10-11 13:12:38 -04:00

63 lines
814 B
CSS

.new-ui-active, .new-ui-inactive {
font-size: 30px;
cursor: pointer;
}
.modal-border {
border-bottom: none !important;
}
i.new-ui-active {
color: #438fda;
}
i.new-ui-inactive {
color: #777;
}
.beta-ui-info {
font-size: 60px;
color: #2a9af3;
}
.center-align {
display: block;
text-align: center;
}
.width-25 {
width: 25%;
}
.confirm-btn {
background-color: #438fda;
border: 1px solid #438fda;
color: white;
}
.cancel-btn {
background-color: white;
border: none;
box-shadow: none;
color: #438fda;
}
.align-items-center {
display: flex;
justify-content: center;
align-items: center;
}
.new-ui-toggle {
margin-right: 9%;
width: 230px;
}
.right-padding-0 {
padding-right: 0%;
}
.display-flex {
display: flex;
}