Hi,
I want that our buttons will align center and the following didn't work:
(wrote this code in the html file)
<style>
.otree-body{
align-items: center;
}
.button {
appearance: button;
backface-visibility: hidden;
background-color: #405cf5;
border-radius: 12px;
border-width: 0;
box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
box-sizing: border-box;
color: #fff;
cursor: pointer;
font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;
font-size: 100%;
height: 44px;
line-height: 1.15;
margin: 12px 0 0;
overflow: hidden;
padding: 0 25px;
text-align: center;
transform: translateZ(0);
transition: all .2s,box-shadow .08s ease-in;
touch-action: manipulation;
min-height:80px;
min-width: 120px;
align-self: center;
}
</style>
Do you have a suggest how to fix this?
Thanks,
Keren