We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cbaa70 commit 9197301Copy full SHA for 9197301
src/componentes/MenuPrincipal/Vistas/Portafolio.vue
@@ -2,22 +2,34 @@
2
import F1 from './Proyectos/F1.vue';
3
</script>
4
<template>
5
- <div>
6
- <ul>
7
- <li>
+ <div id="componentePortafolio">
+ <ul id="contenidoPortafolio">
+ <li class="textoPortafolio">
8
<h2>Glitch</h2>
9
</li>
10
11
<h2>DataBending</h2>
12
13
14
<h2></h2>
15
16
</ul>
17
<img id="contenedorPortafolio" src="/recursos/imagenes/Test.png" />
18
</div>
19
</template>
20
<style lang="scss" scoped>
21
+ul {
22
+ list-style-type: none;
23
+}
24
+#componentePortafolio {
25
+ position: relative;
26
27
+
28
+#contenidoPortafolio {
29
+ position: absolute;
30
+ top: 0;
31
+ left: 0.5em;
32
33
#contenedorPortafolio {
34
width: 75em;
35
height: 60em;
0 commit comments