* feat: Handle privilege escalation gracefully even without PolicyKit * build: upgrade tslint => 5.9.1 * build: add uhk-agent/package-lock.json * feat: add error animation * fix: display agent icon when user use ALT + TAB
28 lines
417 B
SCSS
28 lines
417 B
SCSS
.privilege-checker-wrapper {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
uhk-message {
|
|
max-width: 50%;
|
|
}
|
|
|
|
.privilege-error {
|
|
animation: error-fade-in 2s;
|
|
}
|
|
|
|
@keyframes error-fade-in {
|
|
0% {
|
|
color: white;
|
|
background-color: red;
|
|
}
|
|
|
|
100% {
|
|
color: inherit;
|
|
background-color: inherit;
|
|
}
|
|
}
|