File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 207207 display : flex;
208208 align-items : center;
209209 flex-wrap : wrap;
210+ gap : 8px ; /* espacio uniforme entre botones */
210211}
211212
212213/* BOTON PRACTICAR */
213214.practice-btn {
214-
215- margin-left : auto;
216-
217215 display : inline-flex;
218216 align-items : center;
219- gap : 8px ;
220-
217+ gap : 6px ; /* espacio entre icono y texto */
221218 padding : 8px 16px ;
222219 border-radius : 999px ;
223-
224220 font-size : 0.9rem ;
225221 font-weight : 500 ;
226-
227222 text-decoration : none;
228-
229223 color : var (--color-text-muted );
230224 border : 1px solid var (--color-border );
231-
232225 background : rgba (255 , 255 , 255 , 0.02 );
233226 backdrop-filter : blur (8px );
234-
235- transition : all .2 s ease;
227+ transition : all 0.2 s ease;
228+ margin-left : 0 ; /* eliminamos margen automático */
236229}
237230
238231.practice-btn : hover {
239232 background : rgba (255 , 64 , 96 , 0.15 );
240233 color : # FF4060 ;
241234}
242235
243- @media (max-width : 640px ) {
244-
236+ @media (max-width : 640px ) {
245237 .practice-btn {
246- margin-left : 0 ;
247238 width : 100% ;
248239 justify-content : center;
249240 }
250-
251- }
241+ }
You can’t perform that action at this time.
0 commit comments