-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Enhancement] Introduce Link Target in Button Block #10128
Changes from all commits
4626484
a127eda
f1ef9ce
c5949c5
fb36fe9
434493e
db2cbd8
5fb59f9
2e67a52
b576942
0c62855
5ee5208
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,23 @@ $input-size: 300px; | |
} | ||
} | ||
|
||
&.has-border input[type="text"] { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure if this is the standard way to introduce the Could you let me know if I have done this correctly or is there a more standard way to do this, preferably with one of your awesome examples? Thank you so much ❤️ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks good to me. 👍 |
||
border: 1px solid $dark-gray-500; | ||
border-radius: 4px; | ||
} | ||
|
||
&.is-full-width { | ||
width: 100%; | ||
|
||
input[type="text"] { | ||
width: 100%; | ||
} | ||
|
||
&__suggestions { | ||
width: 100%; | ||
} | ||
} | ||
|
||
.components-spinner { | ||
position: absolute; | ||
right: $input-padding; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's document this new prop in the component's README.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll address this in a follow-up PR 👍