Skip to content
Snippets Groups Projects
Commit 7de63586 authored by Sander August Heggland Schrader's avatar Sander August Heggland Schrader
Browse files

Fixed css

parent d9556ddb
No related branches found
No related tags found
1 merge request!139Sa fixes
...@@ -23,10 +23,10 @@ ...@@ -23,10 +23,10 @@
<button class="button red" @click="reject">Avslå</button> <button class="button red" @click="reject">Avslå</button>
</div> </div>
<div class="" v-if="rent.isAccepted"> <div class="" v-if="rent.isAccepted">
<h1 class="green">Godtatt</h1> <h1 class="approved">Godtatt</h1>
</div> </div>
<div class="" v-if="rent.deleted"> <div class="" v-if="rent.deleted">
<h1 class="red">Avslått</h1> <h1 class="declined">Avslått</h1>
</div> </div>
</div> </div>
</template> </template>
...@@ -110,6 +110,20 @@ export default { ...@@ -110,6 +110,20 @@ export default {
text-decoration: underline; text-decoration: underline;
} }
.approved {
color: darkgreen;
font-weight: bold;
text-align: center;
margin: 0.5rem;
}
.declined {
color: darkred;
font-weight: bold;
text-align: center;
margin: 0.5rem;
}
@media (max-width: 1200px) { @media (max-width: 1200px) {
.img-container { .img-container {
max-width: 30%; max-width: 30%;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment