Remove the scroll bar on the about screen for Windows

This commit is contained in:
Ken Powers 2020-05-15 14:28:13 -04:00 committed by GitHub
parent bfc3efe98c
commit 8244a7a98e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 11 deletions

View file

@ -21,7 +21,6 @@
background-color: #3a76f0; background-color: #3a76f0;
color: white; color: white;
font-size: 14px; font-size: 14px;
height: 350px;
} }
img { img {
@ -34,18 +33,19 @@
</style> </style>
</head> </head>
<body> <body>
<div class="module-splash-screen__logo module-img--200"></div> <div class='module-splash-screen'>
<div class='module-splash-screen__logo module-img--200'></div>
<div class='version'></div> <div class='version'></div>
<div class='environment'></div> <div class='environment'></div>
<div> <div>
<a href="https://signal.org">signal.org</a> <a href='https://signal.org'>signal.org</a>
</div>
<br>
<div>
<a class="privacy" href="https://signal.org/legal">Terms &amp; Privacy Policy</a>
</div>
</div> </div>
<br>
<div>
<a class="privacy" href="https://signal.org/legal">Terms &amp; Privacy Policy</a>
</div>
<script type='text/javascript' src='node_modules/jquery/dist/jquery.js'></script> <script type='text/javascript' src='node_modules/jquery/dist/jquery.js'></script>
<script type='text/javascript' src='js/about_start.js'></script> <script type='text/javascript' src='js/about_start.js'></script>
</body> </body>

View file

@ -1,5 +1,12 @@
// Using BEM syntax explained here: https://csswizardry.com/2013/01/mindbemding-getting-your-head-round-bem-syntax/ // Using BEM syntax explained here: https://csswizardry.com/2013/01/mindbemding-getting-your-head-round-bem-syntax/
.module-splash-screen {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.module-splash-screen__logo { .module-splash-screen__logo {
@include color-svg('../images/signal-logo.svg', $color-white); @include color-svg('../images/signal-logo.svg', $color-white);
margin: 24px auto; margin: 24px auto;