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"
|
||||
@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" />
|
||||
<slot></slot>
|
||||
</div>
|
||||
|
@ -19,7 +23,7 @@
|
|||
|
||||
<script>
|
||||
export default {
|
||||
data: function () {
|
||||
data: function() {
|
||||
return {
|
||||
isMaximized: false
|
||||
};
|
||||
|
@ -99,7 +103,7 @@ export default {
|
|||
max-height: 100%;
|
||||
}
|
||||
.not-maximized {
|
||||
background: rgba(0, 0, 0, 0.8);;
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
padding: 10px 20px;
|
||||
height: revert;
|
||||
width: revert;
|
||||
|
@ -116,5 +120,4 @@ export default {
|
|||
.modal-fade-leave-active {
|
||||
transition: opacity 0.2s ease;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue