mirror of https://github.com/bra1n/townsquare.git
whitespace: run lint -- --fix
This commit is contained in:
parent
9a6d257679
commit
a7cdbf34e3
|
@ -9,7 +9,11 @@
|
||||||
aria-describedby="modalDescription"
|
aria-describedby="modalDescription"
|
||||||
@click.stop=""
|
@click.stop=""
|
||||||
>
|
>
|
||||||
<font-awesome-icon @click="toggleMaximized" class="maximize-toggle" icon="window-maximize" />
|
<font-awesome-icon
|
||||||
|
@click="toggleMaximized"
|
||||||
|
class="maximize-toggle"
|
||||||
|
icon="window-maximize"
|
||||||
|
/>
|
||||||
<font-awesome-icon @click="close" class="close" icon="times-circle" />
|
<font-awesome-icon @click="close" class="close" icon="times-circle" />
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</div>
|
</div>
|
||||||
|
@ -19,10 +23,10 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
data: function () {
|
data: function() {
|
||||||
return {
|
return {
|
||||||
isMaximized: false
|
isMaximized: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
close() {
|
close() {
|
||||||
|
@ -99,7 +103,7 @@ export default {
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
}
|
}
|
||||||
.not-maximized {
|
.not-maximized {
|
||||||
background: rgba(0, 0, 0, 0.8);;
|
background: rgba(0, 0, 0, 0.8);
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
height: revert;
|
height: revert;
|
||||||
width: revert;
|
width: revert;
|
||||||
|
@ -116,5 +120,4 @@ export default {
|
||||||
.modal-fade-leave-active {
|
.modal-fade-leave-active {
|
||||||
transition: opacity 0.2s ease;
|
transition: opacity 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue