Skip to content

Commit

Permalink
Tweaking padding for search results
Browse files Browse the repository at this point in the history
  • Loading branch information
jaedb committed Oct 13, 2023
1 parent 14cbdf1 commit b6c78b5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/js/components/SearchResults.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ const SearchResults = ({
<URILink uri={`iris:search:all:${encodedProviders}:${encodedTerm}`} uriType="search" unencoded>
<I18n path="search.title" />
</URILink>
{' '}
<span style={{ display: 'inline-block', width: 10 }} />
<Icon type="fontawesome" name="angle-right" />
{' '}
<span style={{ display: 'inline-block', width: 10 }} />
<I18n path={`search.${type}.title`} />
</span>
)}
Expand Down
4 changes: 2 additions & 2 deletions src/scss/global/_core.scss
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ footer {
}

h4 {
font-size: 1.3rem;
font-size: 1.4rem;
}

h5 {
Expand Down Expand Up @@ -773,7 +773,7 @@ footer {
}

h4 {
font-size: 1.1rem;
font-size: 1.2rem;
}

h5 {
Expand Down
2 changes: 1 addition & 1 deletion src/scss/views/_artist.scss
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@

.sub-views {
margin-left: 5px;
padding-top: 10px;
padding-top: 30px;

.option {
margin: 0 8px;
Expand Down
6 changes: 5 additions & 1 deletion src/scss/views/_search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@
}

@include responsive($bp_medium) {
header {
margin-bottom: 0;
}

.search-form {
top: 10px;
left: 40px;
Expand All @@ -97,7 +101,7 @@
}

.search-result-sections {
padding: 10px 10px 0;
// padding: 10px 10px 0;

section {
width: auto;
Expand Down

0 comments on commit b6c78b5

Please sign in to comment.