Skip to content

Commit 49ce8b2

Browse files
chore: bump element-plus from 2.4.4 to 2.5.3 in /src-vue (#765)
* chore: bump element-plus from 2.4.4 to 2.5.3 in /src-vue Bumps [element-plus](https://github.com/element-plus/element-plus) from 2.4.4 to 2.5.3. - [Release notes](https://github.com/element-plus/element-plus/releases) - [Changelog](https://github.com/element-plus/element-plus/blob/dev/CHANGELOG.en-US.md) - [Commits](element-plus/element-plus@2.4.4...2.5.3) --- updated-dependencies: - dependency-name: element-plus dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * fix: el-select breaking change * fix: button right margin is valid at all times --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Remy Raes <[email protected]>
1 parent e90b9a3 commit 49ce8b2

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

src-vue/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@element-plus/icons-vue": "^2.0.9",
13-
"element-plus": "^2.4.4",
13+
"element-plus": "^2.5.3",
1414
"marked": "^11.1.1",
1515
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store#9bd993aa67766596638bbfd91e79a1bf8f632014",
1616
"vue": "^3.4.15",

src-vue/src/components/PlayButton.vue

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,10 @@ export default defineComponent({
119119
</template>
120120

121121
<style scoped>
122+
nav {
123+
margin-right: 20px;
124+
}
125+
122126
button {
123127
text-transform: uppercase;
124128
padding: 30px;
@@ -133,12 +137,11 @@ button {
133137
134138
/* Release canal selector */
135139
.el-select {
136-
width: 0;
137-
margin-right: 50px;
140+
width: 31px;
138141
border-left: 1px solid rgb(176, 205, 255);
139142
}
140143
141-
.el-select:deep(.el-input__wrapper) {
144+
.el-select:deep(.el-select__wrapper) {
142145
padding: 0 9px 0 0;
143146
background-color: var(--el-color-primary);
144147
border: none;

0 commit comments

Comments
 (0)