style: dashboard style
This commit is contained in:
@@ -11,6 +11,10 @@
|
||||
font-size: var(--font-size-base);
|
||||
overflow: hidden;
|
||||
|
||||
&.download {
|
||||
background-color: rgb(47 191 133 / 30%);
|
||||
}
|
||||
|
||||
.download {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
@@ -48,7 +48,9 @@ const StatusTag: React.FC<StatusTagProps> = ({ statusValue, download }) => {
|
||||
};
|
||||
return (
|
||||
<span
|
||||
className={classNames('status-tag')}
|
||||
className={classNames('status-tag', {
|
||||
download: download?.percent
|
||||
})}
|
||||
style={
|
||||
download
|
||||
? {
|
||||
|
||||
Reference in New Issue
Block a user