100100 v-if =" !printMapFull"
101101 ref =" refNotepad"
102102 />
103- <div class =" container-map_controls_guess" >
104- <button
105- v-if ="
106- !isNextButtonVisible &&
107- !isSummaryButtonVisible &&
108- ($viewport.width > 450 || isMakeGuessButtonClicked)
109- "
110- id =" reset-button"
111- :disabled =" isGuessButtonClicked || (!!this.room && !isReady)"
112- @click =" resetLocation"
113- >
114- {{ $t('Maps.reset') }}
115- </button >
116- <button
117- v-if ="
118- !isNextButtonVisible &&
119- !isSummaryButtonVisible &&
120- ($viewport.width > 450 || isMakeGuessButtonClicked)
121- "
122- id =" guess-button"
123- :disabled ="
124- randomLatLng == null ||
125- selectedPos == null ||
126- isGuessButtonClicked ||
127- (!!this.room && !isReady)
128- "
129- @click =" selectLocation"
130- >
131- {{ $t('Maps.guess') }}
132- </button >
133- </div >
103+ <button
104+ v-if ="
105+ !isNextButtonVisible &&
106+ !isSummaryButtonVisible &&
107+ ($viewport.width > 450 || isMakeGuessButtonClicked)
108+ "
109+ id =" guess-button"
110+ :disabled ="
111+ randomLatLng == null ||
112+ selectedPos == null ||
113+ isGuessButtonClicked ||
114+ (!!this.room && !isReady)
115+ "
116+ @click =" selectLocation"
117+ >
118+ {{ $t('Maps.guess') }}
119+ </button >
134120 <button
135121 v-if =" isNextButtonVisible"
136122 id =" next-button"
@@ -688,7 +674,8 @@ export default {
688674#reset-button ,
689675#play-again-button {
690676 border : none ;
691- border-radius : 5px ;
677+ border-bottom-right-radius : 5px ;
678+ border-bottom-left-radius : 5px ;
692679 opacity : 0.8 ;
693680 color : white ;
694681 font-size : 16px ;
@@ -698,10 +685,6 @@ export default {
698685 z-index : 999 ;
699686}
700687
701- #make-guess-button ,
702- #guess-button {
703- width : 75% ;
704- }
705688
706689#reset-button {
707690 overflow : hidden ;
@@ -798,13 +781,7 @@ button.w-50 {
798781 bottom : 0 ;
799782 width : 100% ;
800783 }
801- #guess-button {
802- width : 75% ;
803- }
804784
805- #reset-button {
806- width : 25% ;
807- }
808785
809786 #hide-map-button {
810787 position : absolute ;
0 commit comments