Skip to content

Commit

Permalink
adjust button color to github button
Browse files Browse the repository at this point in the history
  • Loading branch information
Till Wanner authored and Till Wanner committed Feb 16, 2024
1 parent 24b01b8 commit 510ea28
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions frontend/src/components/SignInWithGitlabButtonComponent.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<b-button

Check warning on line 3 in frontend/src/components/SignInWithGitlabButtonComponent.vue

View workflow job for this annotation

GitHub Actions / Build

Replace `⏎······variant="primary"⏎······:disabled="disabled"⏎······@click="⏎·······clicked·=·!clicked⏎·····"⏎····` with `·variant="primary"·:disabled="disabled"·@click="clicked·=·!clicked"`
id="button"
variant="primary"
:disabled="disabled"
@click="
clicked = !clicked
Expand All @@ -25,6 +25,7 @@
</div>
<div class="inline-div">
<b-button

Check warning on line 27 in frontend/src/components/SignInWithGitlabButtonComponent.vue

View workflow job for this annotation

GitHub Actions / Build

Replace `⏎··········variant="primary"⏎··········@click="getAccessToken()"⏎········>⏎··········Sign·in⏎·······` with `·variant="primary"·@click="getAccessToken()">·Sign·in`
variant="primary"
@click="getAccessToken()"
>
Sign in
Expand Down Expand Up @@ -87,22 +88,14 @@ export default defineComponent({
</script>

<style scoped>
#button {
background-color: var(--preparePageMainColor);
color: var(--text-primary-color);
}
#button:hover {
background-color: var(--primary-button-hovered);
color: var(--text-primary-color);
}
.inline-div {
display: inline-block;
}
.input-div {
margin-right: 0.5vw;
}
.patInputField {
width: 100%;
margin-right: 5em;
Expand Down

0 comments on commit 510ea28

Please sign in to comment.