Skip to content

Commit

Permalink
Merge pull request #38 from Arzte/small-screen-css
Browse files Browse the repository at this point in the history
Fix css on some elements for small screens.
  • Loading branch information
ltouroumov authored Sep 13, 2024
2 parents 6e14d36 + 04092ff commit d0b2cb3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
6 changes: 1 addition & 5 deletions components/LoadProject.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,4 @@ const loadProjectFile = () => {
};
</script>

<style lang="scss">
.load-project {
min-width: 500px;
}
</style>
<style lang="scss"></style>
4 changes: 0 additions & 4 deletions components/viewer/utils/BuildLibrary.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,6 @@ const loadBuild = (build: BuildData) => {
</script>

<style scoped lang="scss">
.build-library {
min-width: 500px;
}

.build-list {
display: flex;
flex-direction: column;
Expand Down
7 changes: 7 additions & 0 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,11 @@ html {
padding: 10px;
}
}
@media screen and (max-width: 768px) {
.dialog {
width: 100% !important;
max-width: 100%;
}
}
</style>

0 comments on commit d0b2cb3

Please sign in to comment.