diff --git a/src/components/widgets/background/PhotoInformation.jsx b/src/components/widgets/background/PhotoInformation.jsx index 022c208b..32be5282 100644 --- a/src/components/widgets/background/PhotoInformation.jsx +++ b/src/components/widgets/background/PhotoInformation.jsx @@ -271,7 +271,7 @@ function PhotoInformation({ info, url, api }) { {photo} {credit} {info.views && info.downloads !== null ? ( -
+
{info.views.toLocaleString()} diff --git a/src/components/widgets/background/scss/_photoinformation.scss b/src/components/widgets/background/scss/_photoinformation.scss index ae6fdfa3..a7a464a0 100644 --- a/src/components/widgets/background/scss/_photoinformation.scss +++ b/src/components/widgets/background/scss/_photoinformation.scss @@ -449,3 +449,17 @@ } } } + +.unsplashStats { + display: flex; + flex-flow: row; + justify-content: space-between; + gap: 40px; + margin-right: 40px; + div { + display: flex; + flex-flow: row; + gap: 10px; + align-items: center; + } +}