diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-30 07:41:16 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-08-31 18:23:24 +0200 |
commit | cd46099e4939807af05b2ca1c8800d6a956d691b (patch) | |
tree | d619eb6edab6d154660a845172403e5388b83762 /app/javascript/flavours/glitch | |
parent | 7fe2120dd57769aaba6e1e373316b03b45a3555d (diff) |
[Glitch] Change layout of public profile directory to be the same as in web UI
Port 987190417228bb56041ea824772341f07f4263d6 to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch')
-rw-r--r-- | app/javascript/flavours/glitch/features/directory/components/account_card.js | 4 | ||||
-rw-r--r-- | app/javascript/flavours/glitch/styles/containers.scss | 18 |
2 files changed, 20 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/features/directory/components/account_card.js b/app/javascript/flavours/glitch/features/directory/components/account_card.js index e4203541c..7bab0db0b 100644 --- a/app/javascript/flavours/glitch/features/directory/components/account_card.js +++ b/app/javascript/flavours/glitch/features/directory/components/account_card.js @@ -119,7 +119,7 @@ class AccountCard extends ImmutablePureComponent { return ( <div className='directory__card'> <div className='directory__card__img'> - <img src={autoPlayGif ? account.get('header') : account.get('header_static')} alt='' className='parallax' /> + <img src={autoPlayGif ? account.get('header') : account.get('header_static')} alt='' /> </div> <div className='directory__card__bar'> @@ -134,7 +134,7 @@ class AccountCard extends ImmutablePureComponent { </div> <div className='directory__card__extra'> - {account.get('note').length > 0 && account.get('note') !== '<p></p>' && <div className='account__header__content' dangerouslySetInnerHTML={{ __html: account.get('note_emojified') }} />} + <div className='account__header__content' dangerouslySetInnerHTML={{ __html: account.get('note_emojified') }} /> </div> <div className='directory__card__extra'> diff --git a/app/javascript/flavours/glitch/styles/containers.scss b/app/javascript/flavours/glitch/styles/containers.scss index 130e1461c..45eb5a9d0 100644 --- a/app/javascript/flavours/glitch/styles/containers.scss +++ b/app/javascript/flavours/glitch/styles/containers.scss @@ -769,6 +769,24 @@ } } + .directory__list { + display: grid; + grid-gap: 10px; + grid-template-columns: minmax(0, 50%) minmax(0, 50%); + + @media screen and (max-width: $no-gap-breakpoint) { + display: block; + } + + .icon-button { + font-size: 18px; + } + } + + .directory__card { + margin-bottom: 0; + } + .card-grid { display: flex; flex-wrap: wrap; |