diff --git a/src/components/helpers/sharemodal/ShareModal.jsx b/src/components/helpers/sharemodal/ShareModal.jsx index 6b565b6c..e9e26347 100644 --- a/src/components/helpers/sharemodal/ShareModal.jsx +++ b/src/components/helpers/sharemodal/ShareModal.jsx @@ -25,7 +25,7 @@ function ShareModal({ modalClose, data }) { return (
-

{variables.getMessage('widgets.quote.share')}

+ {variables.getMessage('widgets.quote.share')}
diff --git a/src/components/helpers/sharemodal/sharemodal.scss b/src/components/helpers/sharemodal/sharemodal.scss index 51830566..28aa099a 100644 --- a/src/components/helpers/sharemodal/sharemodal.scss +++ b/src/components/helpers/sharemodal/sharemodal.scss @@ -50,7 +50,7 @@ @include themed() { background: t($modal-sidebar); border-radius: t($borderRadius); - box-shadow: 0 0 0 4px t($modal-sidebarActive); + box-shadow: 0 0 0 1px t($modal-sidebarActive); padding: 11px; flex: 1; color: t($color); @@ -63,7 +63,7 @@ @include themed() { background: t($modal-sidebar); border-radius: t($borderRadius); - box-shadow: 0 0 0 4px t($modal-sidebarActive); + box-shadow: 0 0 0 1px t($modal-sidebarActive); padding: 11px; flex: 1; color: t($color); diff --git a/src/components/modals/main/scss/marketplace/_main.scss b/src/components/modals/main/scss/marketplace/_main.scss index 9b7e19a5..44720ddd 100644 --- a/src/components/modals/main/scss/marketplace/_main.scss +++ b/src/components/modals/main/scss/marketplace/_main.scss @@ -94,8 +94,6 @@ border-radius: 150px; padding: 2px 8px; - backdrop-filter: blur(16px) saturate(180%); - backdrop-filter: blur(16px) saturate(180%); background-color: rgb(255 255 255 / 10%); border: 1px solid rgb(209 213 219 / 30%); } diff --git a/src/components/modals/main/scss/settings/modules/tabs/_about.scss b/src/components/modals/main/scss/settings/modules/tabs/_about.scss index 6fa2fcb9..57f52c18 100644 --- a/src/components/modals/main/scss/settings/modules/tabs/_about.scss +++ b/src/components/modals/main/scss/settings/modules/tabs/_about.scss @@ -32,3 +32,13 @@ } } } + +.subtitle-photographers { + font-size: 16px; + @include themed() { + color: t($color); + span { + color: t($subColor) + } + } +} \ No newline at end of file diff --git a/src/components/modals/main/settings/sections/About.jsx b/src/components/modals/main/settings/sections/About.jsx index a43403af..74e54ceb 100644 --- a/src/components/modals/main/settings/sections/About.jsx +++ b/src/components/modals/main/settings/sections/About.jsx @@ -352,9 +352,9 @@ export default class About extends PureComponent { {!!this.state.loading ?

{this.state.loading}

: <> }
    {this.state.photographers.map(({ name, count }) => <> -
  • +
  • {name} - ({count} images) + ({count} images)
  • )}