feat: display files quota in preferences (#994)

This commit is contained in:
Aman Harwara
2022-04-22 21:58:10 +05:30
committed by GitHub
parent b594aae8b9
commit 68ad0f17ae
7 changed files with 200 additions and 78 deletions

View File

@@ -1127,3 +1127,24 @@
.sn-component .hover\:bg-default:hover {
background-color: var(--sn-stylekit-background-color);
}
.sn-component .progress-bar {
border-radius: 0.5rem;
background-color: var(--sn-stylekit-contrast-background-color);
border: 0;
&::-webkit-progress-bar {
background-color: var(--sn-stylekit-contrast-background-color);
border-radius: 0.5rem;
}
&::-webkit-progress-value {
background-color: var(--sn-stylekit-info-color);
border-radius: 0.5rem;
}
&::-moz-progress-bar {
background-color: var(--sn-stylekit-info-color);
border-radius: 0.5rem;
}
}