Skip to content

Commit

Permalink
Merge pull request #217 from 1-alex98/bugfix/#194-Button-text-gets-hi…
Browse files Browse the repository at this point in the history
…dden-on-overflow

Button text gets hidden on overflow
  • Loading branch information
Jazcash authored Jun 19, 2023
2 parents 6fb5adb + af22d64 commit d05fdf1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
4 changes: 1 addition & 3 deletions src/renderer/components/controls/Control.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,8 @@ function onMouseEnter() {
<style lang="scss" scoped>
.control {
display: flex;
min-height: 35px;
max-height: 35px;
align-self: stretch;
align-items: center;
align-self: center;
justify-self: flex-start;
background-color: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.1);
Expand Down
3 changes: 0 additions & 3 deletions src/renderer/components/controls/Number.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ const maxInputWidth = computed(() => `${max.value.toString().length + 1}ch`);
</script>

<style lang="scss" scoped>
.number {
max-height: 35px;
}
:deep(.p-inputtext) {
padding: 0 10px;
width: v-bind(maxInputWidth);
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/controls/SearchBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ $icon-color: $input-color;
$active-color: #ccc;
.search-input-wrapper {
position: relative;
flex-shrink: 0;
input[data-search-input="true"] {
display: block;
width: 100%;
padding: 6px 20px 6px 35px;
font-size: 20px;
height: 35px;
color: $input-color;
max-width: 125px;
background-color: $input-background;
Expand Down

0 comments on commit d05fdf1

Please sign in to comment.