Skip to content
This repository was archived by the owner on Sep 26, 2022. It is now read-only.

Commit c200072

Browse files
fix(Select): cursor and width (#55)
* fix(Select): cursor and width * refactor: lint * refactor: lint
1 parent d039ef8 commit c200072

File tree

1 file changed

+8
-5
lines changed
  • packages/svelte-materialify/src/components/Select

1 file changed

+8
-5
lines changed

packages/svelte-materialify/src/components/Select/Select.scss

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
@import './variables';
22

33
.s-select {
4-
width: 100%;
4+
max-width: 100%;
55
position: relative;
66

7-
&:not(.disabled) {
8-
cursor: pointer;
9-
}
10-
117
.s-menu__wrapper,
128
.s-menu {
139
width: 100%;
1410
}
1511

12+
&:not(.disabled){
13+
input,
14+
.s-menu__wrapper {
15+
cursor: pointer;
16+
}
17+
}
18+
1619
&.chips {
1720
.s-text-field__wrapper.filled .s-text-field__input {
1821
padding-top: 24px;

0 commit comments

Comments
 (0)