X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bsignup%2F%2Bregister%2Fregister.component.scss;h=e135b5cb4312488b91a7f4bb3845051f01d5c9bb;hb=ece3029bd99a76b3c48a1cc8c58914c5cf61f106;hp=6f61b78f719df5a3c04eb7e6cbfc5461e7016327;hpb=b91bc1d1f3591c35ab4426f6ab594b4bd9f1ef62;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+signup/+register/register.component.scss b/client/src/app/+signup/+register/register.component.scss index 6f61b78f7..e135b5cb4 100644 --- a/client/src/app/+signup/+register/register.component.scss +++ b/client/src/app/+signup/+register/register.component.scss @@ -1,5 +1,9 @@ @import '_variables'; @import '_mixins'; +@import "./_bootstrap-variables"; + +@import '~bootstrap/scss/functions'; +@import '~bootstrap/scss/variables'; .alert { font-size: 15px; @@ -13,18 +17,37 @@ & > div { margin-bottom: 40px; - width: 450px; - @media screen and (max-width: 500px) { - width: auto; + &.register-form { + width: 450px; } - } -} -my-instance-features-table { - display: block; + &.instance-information { + width: 600px; + margin-bottom: 40px; + + .block { + font-size: 15px; + margin-bottom: 15px; + padding: 0 $btn-padding-x; + } - margin-bottom: 40px; + @media screen and (max-width: 1500px) { + width: 450px; + } + + ngb-accordion ::ng-deep { + .btn { + font-weight: $font-semibold !important; + color: var(--mainForegroundColor) !important; + } + } + } + + @media screen and (max-width: $mobile-view) { + width: auto; + } + } } .form-group-terms { @@ -56,3 +79,26 @@ button { @include peertube-button; @include orange-button; } + +.name-information { + margin-top: 10px; +} + +.done-loader { + display: flex; + justify-content: center; + flex-direction: column; + align-items: center; + + my-loader { + margin-bottom: 20px; + + ::ng-deep .loader div { + border-color: var(--mainColor) transparent transparent transparent; + } + + & + div { + font-size: 15px; + } + } +}