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

Commit

Permalink
Change <Button to <button in the DV summary.
Browse files Browse the repository at this point in the history
- Update text
  • Loading branch information
jessgusclark committed Jan 29, 2021
1 parent e93efa6 commit 5d9466e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/Dashboard/panels/DataVaultSummary.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React from 'react'
import Panel from '../../../components/Panel/Panel'
import datavaultIcon from '../../../assets/images/icons/data-vault.svg'
import { BaseButton } from '../../../components/Buttons'
import ProgressBar from '../../../components/ProgressBar/ProgressBar'
import ToolTip from '../../../components/Tooltip/Tooltip'
import { DataVaultStorageState } from '../../state/reducers/datavault'
Expand All @@ -22,7 +21,7 @@ const DataVaultSummary: React.FC<DataVaultSummaryInterface> = ({ storage, handle
</ToolTip>
</div>
<div className="column">
<BaseButton onClick={handleButton} className="turquoise panel-button">DataVault</BaseButton>
<button className="link" style={{ marginTop: -10 }} onClick={handleButton}>View your DataVault</button>
</div>
</div>
</Panel>
Expand Down
6 changes: 6 additions & 0 deletions src/assets/scss/components/_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,9 @@ button.small {
padding: 5px 25px;
font-size: 14px;
}

button.link {
color: $turquoise;
border: none;
background-color: transparent;
}

0 comments on commit 5d9466e

Please sign in to comment.