Skip to content

Commit

Permalink
Update min size
Browse files Browse the repository at this point in the history
  • Loading branch information
javalikescript committed May 12, 2024
1 parent 1ed97ae commit 92f69b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions extensions/web-base/www/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ input:checked + .slider:before {
visibility: collapse;
}
}
@media all and (min-width: 640px) and (max-width: 799px) {
@media all and (min-width: 320px) and (max-width: 799px) {
.tile {
height: 16rem;
width: 16rem;
Expand All @@ -565,7 +565,7 @@ input:checked + .slider:before {
}
}

@media all and (max-width: 639px) {
@media all and (max-width: 319px) {
html {
font-size: 50%;
}
Expand Down
2 changes: 1 addition & 1 deletion extensions/web-base/www/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var app = new Vue({
el: '#app',
data: {
menu: '',
hideMenu: window.innerWidth < 640,
hideMenu: window.innerWidth <= 320,
dialog: '',
page: '',
path: '',
Expand Down
2 changes: 1 addition & 1 deletion extensions/web-chart/web-chart.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<button v-on:click="reloadHistoricalData" title="Refresh"><i class="fas fa-sync"></i></button>
</template>
<article class="content">
<div style="text-align: center; min-width: 640px;">
<div style="text-align: center; min-width: 320px;">
<select v-model="path" v-on:change="openPath">
<option value="" disabled selected>(Choose something)</option>
<optgroup v-for="thing in things" :label="thing.title" v-if="thing.archiveData">
Expand Down

0 comments on commit 92f69b5

Please sign in to comment.