X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Baccounts%2Faccounts.component.scss;h=c1cf53f3a70e587f042509cf3ee08943a1e9d442;hb=67264e060b6068399dae9a67abae035a73b84af1;hp=a06f04055fd1ee641590cd0e66edba2b994e08dd;hpb=aa0f19635ae4632e286de1599fc24f95f32a108c;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+accounts/accounts.component.scss b/client/src/app/+accounts/accounts.component.scss index a06f04055..c1cf53f3a 100644 --- a/client/src/app/+accounts/accounts.component.scss +++ b/client/src/app/+accounts/accounts.component.scss @@ -1,29 +1,26 @@ @import '_variables'; @import '_mixins'; +@import '_actor'; +@import '_miniature'; -.sub-menu { - @include sub-menu-with-actor; - - .actor { - width: 100%; - } +.root { + --myGlobalPadding: 60px; + --myImgMargin: 30px; + --myFontSize: 16px; + --myGreyFontSize: 16px; } -.right-buttons { - display: flex; - height: max-content; - margin-left: auto; - margin-top: 20px; +.section-label { + @include section-label-responsive; +} - a { - @include peertube-button-outline; - height: auto; - line-height: 32px; - } +.links { + @include fluid-videos-miniature-layout; - my-subscribe-button { - height: min-content; - } + display: flex; + justify-content: space-between; + align-items: center; + max-width: 800px; } my-user-moderation-dropdown, @@ -40,6 +37,98 @@ my-user-moderation-dropdown, .copy-button { border: none; - padding: 5px; - margin-top: -2px; +} + +.account-info { + display: grid; + grid-template-columns: 1fr min-content; + grid-template-rows: auto auto; + + background-color: pvar(--submenuColor); + margin-bottom: 45px; + padding: var(--myGlobalPadding) var(--myGlobalPadding) 0 var(--myGlobalPadding); + font-size: var(--myFontSize); +} + +.account-avatar-row { + @include avatar-row-responsive(var(--myImgMargin), var(--myGreyFontSize)); +} + +.description { + grid-column: 1 / 3; +} + +.created-at { + margin-top: 15px; + color: pvar(--greyForegroundColor); + padding-bottom: 60px; +} + +.show-more { + @include show-more-description; + + display: none; + text-align: center; +} + +.buttons { + grid-column: 2; + grid-row: 1; + + display: flex; + flex-wrap: wrap; + justify-content: flex-end; + align-content: flex-start; + + > *:not(:last-child) { + margin-bottom: 15px; + } +} + +@media screen and (max-width: $small-view) { + .root { + --myGlobalPadding: 45px; + --myChannelImgMargin: 15px; + } + + .account-info { + display: block; + padding-bottom: 60px; + } + + .description:not(.expanded) { + max-height: 70px; + + @include fade-text(30px, pvar(--submenuColor)); + } + + .show-more { + display: block; + } + + .buttons { + justify-content: center; + } +} + +@media screen and (max-width: $mobile-view) { + .root { + --myGlobalPadding: 15px; + --myFontSize: 14px; + --myGreyFontSize: 13px; + } + + .account-info { + display: block; + padding-bottom: 30px; + } + + .links { + margin: auto !important; + width: min-content; + } + + .show-more { + margin-bottom: 30px; + } }