This commit is contained in:
parent
6f080b1275
commit
6a8be05d4b
|
@ -1,4 +1,4 @@
|
|||
hedera-web (22.44.9) stable; urgency=low
|
||||
hedera-web (22.44.10) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -21,8 +21,8 @@
|
|||
.basket .line {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
margin: 24px 0;
|
||||
height: 65px;
|
||||
margin: 20px 0;
|
||||
height: 68px;
|
||||
}
|
||||
.basket .line:last-child {
|
||||
margin-bottom: 0;
|
||||
|
@ -34,7 +34,7 @@
|
|||
.basket .line > .photo {
|
||||
flex: none;
|
||||
border-radius: 50%;
|
||||
width: 65px;
|
||||
width: 68px;
|
||||
gap: 0;
|
||||
}
|
||||
.basket .line > .info {
|
||||
|
|
|
@ -34,9 +34,9 @@
|
|||
|
||||
.ticket .line {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
gap: 12px;
|
||||
margin: 24px 0;
|
||||
height: 65px;
|
||||
height: 68px;
|
||||
}
|
||||
.ticket .line:last-child {
|
||||
margin-bottom: 0;
|
||||
|
@ -44,16 +44,21 @@
|
|||
.ticket .line > .photo {
|
||||
flex: none;
|
||||
border-radius: 50%;
|
||||
width: 65px;
|
||||
width: 68px;
|
||||
}
|
||||
.ticket .line > .info {
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
.ticket .line > .info > * {
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
.ticket .line > .info > h2 {
|
||||
font-size: 1rem;
|
||||
font-size: .9rem;
|
||||
font-weight: normal;
|
||||
padding: 0;
|
||||
padding-bottom: .1em;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
.ticket .line > .info > p {
|
||||
margin: 0;
|
||||
|
|
|
@ -74,7 +74,7 @@ module.exports = new Class({
|
|||
}
|
||||
|
||||
,isModal: function() {
|
||||
return this._modal || Vn.isMobile();
|
||||
return this._modal || Vn.isMobile() || true;
|
||||
}
|
||||
|
||||
,open: function() {
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
|
||||
&.modal {
|
||||
position: relative;
|
||||
font-size: 1.2rem;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
|
|
@ -43,10 +43,10 @@ body { font-size: 14px; }
|
|||
@media
|
||||
(max-device-width: 411px) and (min-resolution: 249dpi),
|
||||
(max-device-width: 411px) and (-webkit-min-device-pixel-ratio: 3) {
|
||||
body { font-size: 14px; }
|
||||
body { font-size: 13px; }
|
||||
}
|
||||
@media
|
||||
(min-device-width: 414px) and (min-resolution: 249dpi),
|
||||
(min-device-width: 414px) and (-webkit-min-device-pixel-ratio: 3) {
|
||||
body { font-size: 14px; }
|
||||
body { font-size: 13px; }
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hedera-web",
|
||||
"version": "22.44.9",
|
||||
"version": "22.44.10",
|
||||
"description": "Verdnatura web page",
|
||||
"license": "GPL-3.0",
|
||||
"repository": {
|
||||
|
|
Loading…
Reference in New Issue