Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions packages/core/src/login/webview/vue/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,3 @@
/* Alignment */
--auth-container-top: 15%;
}

@media (max-width: 260px) {
body {
scale: 0.6;
}
}
3 changes: 2 additions & 1 deletion packages/core/src/login/webview/vue/login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,8 @@ export default defineComponent({
margin: auto;
position: absolute;
top: var(--auth-container-top);
width: 260px;
max-width: 260px;
width: 90vw;
}

.header {
Expand Down
3 changes: 3 additions & 0 deletions packages/core/src/login/webview/vue/reauthenticate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -169,12 +169,14 @@ export default defineComponent({
justify-content: space-between;
/** The overall height of the container, then spacing is automatic between child elements */
height: 7rem;
text-align: center;
}

#content-container > * {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

#icon-container {
Expand Down Expand Up @@ -203,6 +205,7 @@ button#reauthenticate {
padding: 0.3rem;
width: 80%;
user-select: none;
max-width: 260px;
}

button#signout {
Expand Down
6 changes: 6 additions & 0 deletions packages/core/src/login/webview/vue/selectableItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,4 +188,10 @@ body.vscode-high-contrast:not(body.vscode-high-contrast-light) .icon .svg-path {
body.vscode-high-contrast-light .icon .svg-path {
fill: black;
}

.item-container-base .text .p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style>
Loading