mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-17 02:56:16 +08:00
Changes in the profile (#3352) guijun13
* feat(popup): change gh and tt input position * feat(popup): add static url for gh and twitter * fix(popup): lower input size & add margin between
This commit is contained in:
parent
a874eb02d2
commit
641dc03f1c
2 changed files with 19 additions and 4 deletions
|
@ -1283,6 +1283,15 @@
|
|||
max-height: 10rem;
|
||||
}
|
||||
|
||||
.socialURL {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.socialURL > p {
|
||||
margin-block: 0.5rem;
|
||||
margin-inline-end: 0.5rem;
|
||||
}
|
||||
|
||||
.badgeSelectionContainer {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
|
|
@ -1003,12 +1003,18 @@
|
|||
<textarea class="keyboard" type="text" autocomplete="off"></textarea>
|
||||
</div>
|
||||
<div>
|
||||
<label>twitter</label>
|
||||
<input class="twitter" type="text" value="" />
|
||||
<label>github</label>
|
||||
<div class="socialURL">
|
||||
<p>https://github.com/</p>
|
||||
<input class="github" type="text" value="" />
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<label>github</label>
|
||||
<input class="github" type="text" value="" />
|
||||
<label>twitter</label>
|
||||
<div class="socialURL">
|
||||
<p>https://twitter.com/</p>
|
||||
<input class="twitter" type="text" value="" />
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<label>website</label>
|
||||
|
|
Loading…
Add table
Reference in a new issue