Skip to content

Commit

Permalink
Fixed #1353 - Responsive TabMenu and Breadcrumb
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Jun 16, 2021
1 parent 5d25714 commit cbc0b98
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/components/breadcrumb/Breadcrumb.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,17 @@ export default {
</script>

<style>
.p-breadcrumb {
overflow-x: auto;
}
.p-breadcrumb ul {
margin: 0;
padding: 0;
list-style-type: none;
display: flex;
align-items: center;
flex-wrap: wrap;
flex-wrap: nowrap;
}
.p-breadcrumb .p-menuitem-text {
Expand Down
6 changes: 5 additions & 1 deletion src/components/tabmenu/TabMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,16 @@ export default {
</script>

<style>
.p-tabmenu {
overflow-x: auto;
}
.p-tabmenu-nav {
display: flex;
margin: 0;
padding: 0;
list-style-type: none;
flex-wrap: wrap;
flex-wrap: nowrap;
}
.p-tabmenu-nav a {
Expand Down

0 comments on commit cbc0b98

Please sign in to comment.