28 lines
559 B
SCSS
Raw Normal View History

/* Popup za vprasajcke */
.qtip{
position: fixed !important;
z-index: 9999999 !important;
width: 80% !important;
box-sizing: border-box !important;
top: 20% !important;
left: 10% !important;
box-shadow: 0 0 15px 15px rgba(0,0,0,.34) !important;
2022-06-02 11:21:27 +02:00
}
// Klasicen popup
.divPopUp{
2022-06-07 10:34:01 +02:00
width: calc(100% - 32px) !important;
max-width: calc(100% - 32px) !important;
2022-06-02 11:21:27 +02:00
box-sizing: border-box;
margin: 0 16px;
2022-06-07 10:34:01 +02:00
&.PopUpNarrow{
width: calc(100% - 32px) !important;
max-width: calc(100% - 32px) !important;
}
}