Skip to content

Commit

Permalink
fix: Improve the styling of the sign in
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinbyrne committed Oct 11, 2024
1 parent 5e55a75 commit 8bd019b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion web/src/signInView.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ import { VSidebarSignIn } from '@appland/components';
import MessagePublisher from './messagePublisher';

export default function mountSignInView() {
document.body.style = 'height: 100%; margin: 0; overflow-y: scroll;';
document.body.style = [
'height: 100%;',
'margin: 0;',
'overflow-y: scroll;',
'padding: 0;',
'background-color: #010306;',
].join('');

const vscode = window.acquireVsCodeApi();
const messages = new MessagePublisher(vscode);
Expand Down

0 comments on commit 8bd019b

Please sign in to comment.