Skip to content
Open
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
4 changes: 4 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -214,5 +214,9 @@ label {
background-color: #95B0B9;
}

.width-card-login{
max-width: 20em;
}


</style>
6 changes: 1 addition & 5 deletions src/components/Authentication/Login.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div id="login">
<div class="width-card-login">
<div class="card-body">
<img src="../../assets/logo.png" class="rounded mx-auto d-block img-fluid" id="falkoLogoLogin">

Expand Down Expand Up @@ -93,10 +93,6 @@ export default {
</script>

<style>
#login {
max-width: 20em;
}

#falkoLogoLogin {
width: 11em;
margin: 2.5em 0;
Expand Down
6 changes: 1 addition & 5 deletions src/components/Authentication/Register.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div id="register">
<div class="width-card-login">
<div class="card-body">
<img src="../../assets/logo.png" class="rounded mx-auto d-block img-fluid" id="falkoLogoRegister">
<form id="registerForm" @submit.prevent="register()" data-vv-scope="form-register">
Expand Down Expand Up @@ -124,10 +124,6 @@ export default {
</script>

<style>
#register {
max-width: 20em;
}

#falkoLogoRegister {
width: 11em;
margin: 1.3em 0;
Expand Down
4 changes: 0 additions & 4 deletions src/components/Issues/AddIssue.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,6 @@ export default {

<style scoped>

#issueName {
color: #777;
}

#addButton {
margin-top: 2em;
}
Expand Down
20 changes: 0 additions & 20 deletions src/components/Issues/Issues.vue
Original file line number Diff line number Diff line change
Expand Up @@ -195,26 +195,6 @@ p{
white-space: nowrap;
}

.number-circle {
font: 32px Arial, sans-serif;

width: 0.5em;
height: 0.5em;
box-sizing: initial;

background: #fff;
border: 0.1em solid;
margin-right: 0.3em;
border-style: solid;
color: #7799A5;
border-radius: 50%;

line-height: 0.5em;
box-sizing: content-box;
top: 50%;
left: 50%;
}

.pagination {
padding-bottom: 20px;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Projects/Grade.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<div class="col justify-content-center" id="grade">
<div class="row justify-content-center">
<div class="float-right number-circle">
<div class="float-right number-circle-grade">
<div id="gradeFont"> {{this.grade}} </div>
</div>
</div>
Expand Down Expand Up @@ -64,7 +64,7 @@
}
</script>
<style>
.number-circle {
.number-circle-grade {
font: 32px Arial, sans-serif;

width: 1.8em;
Expand Down
3 changes: 0 additions & 3 deletions src/components/Releases/AddRelease.vue
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,6 @@ input {
margin-bottom: 0.5em;
}

#releaseName {
color: #777;
}
#addReleaseButton {
width: 100%;
border-radius: 0;
Expand Down
8 changes: 0 additions & 8 deletions src/components/Releases/ReleaseCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,4 @@ export default {
border-bottom: 2px solid #637074;
}

.falko-button-grey {
background-color: rgba(134, 142, 150, 0.5);
}

.number-circle-selected {
border: 0.2em solid rgba(98, 104, 110, 0.8);
color: rgba(98, 104, 110, 0.8);
}
</style>
20 changes: 0 additions & 20 deletions src/components/Releases/Releases.vue
Original file line number Diff line number Diff line change
Expand Up @@ -265,26 +265,6 @@ h5 {
border-color: #7799A5;
}

.number-circle {
font: 32px Arial, sans-serif;

width: 2.5em;
height: 2.5em;
box-sizing: initial;

background: #fff;
border: 0.2em solid #7799A5;
border-style: solid;
color: #7799A5;
text-align: center;
border-radius: 50%;

line-height: 2.5em;
box-sizing: content-box;
top: 50%;
left: 50%;
}

.releasesBorder {
border-right:1px solid #c3c3c3;
}
Expand Down
9 changes: 0 additions & 9 deletions src/components/Retrospective/EditRetrospective.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,6 @@ export default {

<style scoped>

/* textarea {
width: 100%;
height: 15em;
padding: 1em;
background-color: white;
border: 1px solid rgba(0, 0, 0, 0.25);
color: #444;
} */

input::placeholder {
color: #777;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Score/Score.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<div class="float-right ">Points</div>
<div class="float-right number-circle">
<div class="float-right number-circle-score">
<div id="pointsFont"> {{this.points}} </div>
</div>
</div>
Expand All @@ -14,7 +14,7 @@
</script>

<style scoped>
.number-circle {
.number-circle-score {
font: 32px Arial, sans-serif;

width: 0.5em;
Expand Down