ordre des boutons de login sur petits écrans
This commit is contained in:
parent
78dbc4b3b2
commit
ee1942d788
@ -21,3 +21,15 @@
|
|||||||
#passwordIcon {
|
#passwordIcon {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 768px) {
|
||||||
|
#buttonsContainer {
|
||||||
|
display: grid;
|
||||||
|
}
|
||||||
|
#loginContainer {
|
||||||
|
order: 1;
|
||||||
|
}
|
||||||
|
#backContainer{
|
||||||
|
order: 2;
|
||||||
|
}
|
||||||
|
}
|
@ -38,14 +38,14 @@
|
|||||||
<a href="<?php echo helper::baseUrl(); ?>user/forgot/<?php echo $this->getUrl(2);?>"><?php echo helper::translate('Mot de passe perdu'); ?></a>
|
<a href="<?php echo helper::baseUrl(); ?>user/forgot/<?php echo $this->getUrl(2);?>"><?php echo helper::translate('Mot de passe perdu'); ?></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row" id="buttonsContainer">
|
||||||
<div class="col2">
|
<div class="col2" id="backContainer">
|
||||||
<?php echo template::button('userLoginBack', [
|
<?php echo template::button('userLoginBack', [
|
||||||
'href' => $this->getUrl(2) ? helper::baseUrl() . str_replace('_', '/', str_replace('__', '#', $this->getUrl(2))) : helper::baseUrl(),
|
'href' => $this->getUrl(2) ? helper::baseUrl() . str_replace('_', '/', str_replace('__', '#', $this->getUrl(2))) : helper::baseUrl(),
|
||||||
'value' => template::ico('left')
|
'value' => template::ico('left')
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col3 offset7">
|
<div class="col3 offset7" id="loginContainer">
|
||||||
<?php echo template::submit('userLoginSubmit', [
|
<?php echo template::submit('userLoginSubmit', [
|
||||||
'value' => 'Connexion',
|
'value' => 'Connexion',
|
||||||
'ico' => ''
|
'ico' => ''
|
||||||
|
Loading…
Reference in New Issue
Block a user