1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

fixed titles on lab and node related

This commit is contained in:
Fedor Katurov 2021-10-05 15:47:01 +07:00
parent 07852df0dc
commit d382553b8a
4 changed files with 14 additions and 16 deletions

View file

@ -16,6 +16,7 @@ import {
import { LabTags } from '~/components/lab/LabTags';
import { LabHeroes } from '~/components/lab/LabHeroes';
import { FlowRecentItem } from '~/components/flow/FlowRecentItem';
import { SubTitle } from '~/components/common/SubTitle';
interface IProps {}
@ -31,10 +32,10 @@ const LabStats: FC<IProps> = () => {
<div className={styles.card}>
<Group>
{isLoading ? (
<Placeholder height={14} width="100px" />
) : (
tags.length && <div className={styles.title}>Тэги</div>
{(!!tags.length || isLoading) && (
<SubTitle isLoading={isLoading} className={styles.title}>
Тэги
</SubTitle>
)}
<div className={styles.tags}>
@ -56,10 +57,10 @@ const LabStats: FC<IProps> = () => {
</>
)}
{isLoading ? (
<Placeholder height={14} width="100px" />
) : (
heroes.length > 0 && <div className={styles.title}>Важные</div>
{(!!heroes.length || isLoading) && (
<SubTitle isLoading={isLoading} className={styles.title}>
Важные
</SubTitle>
)}
<div className={styles.heroes}>

View file

@ -1,10 +1,7 @@
@import "~/styles/variables.scss";
.title {
font: $font_14_semibold;
color: darken(white, 50%);
text-transform: uppercase;
padding: 0 $gap / 2;
padding-bottom: $gap;
}
.tags.tags {
@ -26,3 +23,4 @@
.updates {
padding: 0 $gap / 4 $gap * 2;
}