mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-31 21:38:19 +03:00
Improved badge color
This commit is contained in:
parent
b3be7df890
commit
7efc09d73c
2 changed files with 6 additions and 1 deletions
|
@ -26,3 +26,8 @@
|
|||
padding: 30px 30px 30px 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.badge-main {
|
||||
color: #fff;
|
||||
background-color: $mainColor;
|
||||
}
|
||||
|
|
|
@ -123,7 +123,7 @@ export class ShortUrlsVisits extends React.Component {
|
|||
<h2>
|
||||
{
|
||||
shortUrl.visitsCount &&
|
||||
<span className="badge badge-primary float-right">Visits: {shortUrl.visitsCount}</span>
|
||||
<span className="badge badge-main float-right">Visits: {shortUrl.visitsCount}</span>
|
||||
}
|
||||
Visit stats for <a target="_blank" href={shortLink}>{shortLink}</a>
|
||||
</h2>
|
||||
|
|
Loading…
Reference in a new issue