padding
This commit is contained in:
parent
00b419ef8f
commit
aac90540f5
2 changed files with 12 additions and 1 deletions
|
@ -265,7 +265,7 @@ button[type="submit"]:hover {
|
|||
}
|
||||
|
||||
.treasure {
|
||||
padding: 0 20px 30px 0px;
|
||||
padding: 0 20px 20px 20px;
|
||||
}
|
||||
|
||||
.treasure-submitted {
|
||||
|
|
|
@ -10,6 +10,8 @@ window.onpopstate = history.onpushstate = function(e) {
|
|||
};
|
||||
history.pushState("#main-page", "", "")
|
||||
|
||||
var save_udpate= null;
|
||||
|
||||
function show_page(id, historyPush) {
|
||||
//si le z-index de la nouvelle page est inférieur on fait un transi 'forward' sinon 'backward'
|
||||
for(i in page) {
|
||||
|
@ -21,6 +23,15 @@ function show_page(id, historyPush) {
|
|||
$hs.addClass('away');
|
||||
$id = $(id).show();
|
||||
|
||||
/*if(id == "#demande-page") {
|
||||
save_udpate = setInterval(() => {
|
||||
let save_scroll = $(window).scrollTop();
|
||||
updateDemandes();
|
||||
$(window).scrollTop(save_scroll);
|
||||
}, 5000);
|
||||
} else if (!save_udpate) {
|
||||
clearInterval(save_udpate);
|
||||
}*/
|
||||
|
||||
if(!historyPush) {
|
||||
history.pushState(id, "", "")
|
||||
|
|
Loading…
Reference in a new issue