mirror of
https://github.com/simple-login/app.git
synced 2024-11-17 06:04:36 +08:00
fix referral display on mobile
This commit is contained in:
parent
b5120e78d6
commit
fe73005d49
1 changed files with 6 additions and 6 deletions
|
@ -26,7 +26,7 @@
|
|||
|
||||
<b>Name</b>
|
||||
<div class="d-flex mb-3">
|
||||
<div class="mr-2" style="min-width: 20em">
|
||||
<div class="mr-2">
|
||||
<input name="name" class="form-control" value="{{ referral.name or '' }}">
|
||||
</div>
|
||||
<div>
|
||||
|
@ -45,20 +45,20 @@
|
|||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div>
|
||||
<div class="mt-2">
|
||||
Please use this referral link to invite your friends trying out SimpleLogin: <br>
|
||||
|
||||
<div class="d-flex mb-5" style="max-width: 40em">
|
||||
<div class="flex-grow-1 mr-1">
|
||||
<div class="d-flex mb-5 mt-2" style="max-width: 40em">
|
||||
<div class="flex-grow-1 mr-2">
|
||||
<input class="form-control" id="referral-{{ referral.id }}" readonly
|
||||
value="{{ referral.link() }}">
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<button class="clipboard btn btn-primary" data-clipboard-action="copy"
|
||||
<button class="clipboard btn btn-outline-primary" data-clipboard-action="copy"
|
||||
data-clipboard-text="{{ referral.link() }}"
|
||||
data-clipboard-target="#referral-{{ referral.id }}">
|
||||
Copy <i class="fe fe-clipboard"></i>
|
||||
Copy <i class="fe fe-clipboard"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue