Fix invite input box size in non-Firefox browsers
font-size-adjust is still a flag-enabled feature in Chrome 77, and doesn't have widespread support across browsers. So instead this uses font-size to make the text large enough. Ref T690
This commit is contained in:
parent
26a4f48e8b
commit
ddce177784
1 changed files with 2 additions and 2 deletions
|
@ -3,9 +3,9 @@
|
||||||
<style>
|
<style>
|
||||||
.copy-link {
|
.copy-link {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 1em 0;
|
margin: 1rem 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size-adjust: .7;
|
font-size: 1.2em;
|
||||||
color: #555;
|
color: #555;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Add table
Reference in a new issue