Skip to content
This repository was archived by the owner on Nov 7, 2023. It is now read-only.

Commit ff98abe

Browse files
committed
Change <Button to <button in the DV summary.
- Update text
1 parent fe58863 commit ff98abe

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/app/Dashboard/panels/DataVaultSummary.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React from 'react'
22
import Panel from '../../../components/Panel/Panel'
33
import datavaultIcon from '../../../assets/images/icons/data-vault.svg'
4-
import { BaseButton } from '../../../components/Buttons'
54
import ProgressBar from '../../../components/ProgressBar/ProgressBar'
65
import ToolTip from '../../../components/Tooltip/Tooltip'
76
import { DataVaultStorageState } from '../../state/reducers/datavault'
@@ -22,7 +21,7 @@ const DataVaultSummary: React.FC<DataVaultSummaryInterface> = ({ storage, handle
2221
</ToolTip>
2322
</div>
2423
<div className="column">
25-
<BaseButton onClick={handleButton} className="turquoise panel-button">DataVault</BaseButton>
24+
<button className="link" style={{ marginTop: -10 }} onClick={handleButton}>View your DataVault</button>
2625
</div>
2726
</div>
2827
</Panel>

src/assets/scss/components/_button.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,9 @@ button.small {
7575
padding: 5px 25px;
7676
font-size: 14px;
7777
}
78+
79+
button.link {
80+
color: $turquoise;
81+
border: none;
82+
background-color: transparent;
83+
}

0 commit comments

Comments
 (0)