question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

I am not certain if anyone encountered this with their project.

I do not use frameworks like Bootstrap.

I get some issues with the form field input. It appears smaller than it should be when users start typing.

Here’s my fix:

.Select-input {
  padding: 0 !important;
}

.Select-input,
.Select-input input {
  width: 100% !important;
}

.Select-input input {
  text-indent: 10px;
}

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Reactions:7
  • Comments:8 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
jharris4commented, Nov 28, 2017

I’m seeing this issue with Chrome 62, and the fix from @joinjoohny seems to have fixed it.

1reaction
joinjoohnycommented, Dec 22, 2016

Thank you! But when clicked in select, it doesn’t open. I have small fix, when select is open.

.Select.is-open .Select-input {
  padding: 0 !important;
}

.Select.is-open .Select-input,
.Select.is-open .Select-input input {
  width: 100% !important;
}

.Select.is-open .Select-input input {
  text-indent: 10px;
}
Read more comments on GitHub >

github_iconTop Results From Across the Web

How to fix browser-specific styling issues in CSS
In this article, we will learn how to approach fixing browser-specific styling issues. ... Firstly, create an HTML file with Some CSS style....
Read more >
What are the most common Website styling issues/ CSS ...
What are the most common Website styling issues/ CSS problems that web developers/designers encounter?
Read more >
Overcome Common Styling Issues with CSS3 Psuedo-Elements
Let's jump in and look at some of the available effects. Creating a Dropcap Effect. First, we'll start with dropcaps. Without using a...
Read more >
Style Issues - English Language Issues
Some issues which arise while writing English are issues of style rather than correctness: there is typically more than one "right" way to...
Read more >
CSS Styling Issues | SAP Help Portal
CSS Styling Issues · On this page · Don't override control class styling directly · Don't style DOM element names directly · Don't...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found