Quellcode durchsuchen

:lipstick: added images to start dev on name-plate for profile card

tags/0.0.3^2
K Rob vor 3 Jahren
Ursprung
Commit
27020f8fd7

BIN
frontend/assets/images/woman-1-lg.jpg Datei anzeigen


BIN
frontend/assets/images/woman-1-sm.jpg Datei anzeigen


+ 1
- 1
frontend/assets/sass/main.scss Datei anzeigen

2
 @import 'icons';
2
 @import 'icons';
3
 
3
 
4
 
4
 
5
-
5
+// Global Styles
6
 html {
6
 html {
7
     background-color: $black;
7
     background-color: $black;
8
     font-size: $base-font-size;
8
     font-size: $base-font-size;

+ 1
- 2
frontend/src/components/NamePlate.vue Datei anzeigen

8
                 span.text-capitalize(v-if='isList')
8
                 span.text-capitalize(v-if='isList')
9
                     span.text-capitalize | {{ locale }}
9
                     span.text-capitalize | {{ locale }}
10
             p.text-capitalize(v-if='!isList') {{ pronouns }}
10
             p.text-capitalize(v-if='!isList') {{ pronouns }}
11
+            img(src='../../assets/images/woman-1.jpg', alt='Profile image')
11
 </template>
12
 </template>
12
 
13
 
13
 <script>
14
 <script>
48
         flex-direction: column
49
         flex-direction: column
49
         align-items: center
50
         align-items: center
50
         justify-content: center
51
         justify-content: center
51
-        padding: 15px
52
         min-height: 10vh
52
         min-height: 10vh
53
         width: 100%
53
         width: 100%
54
         &.box
54
         &.box
55
-            background-color: #D5D5D5
56
             border-radius: 6px
55
             border-radius: 6px
57
             height: 15vw
56
             height: 15vw
58
             width: 15vw
57
             width: 15vw

+ 3
- 3
frontend/src/components/ProfileCard.vue Datei anzeigen

66
 import PairingButton from './PairingButton.vue'
66
 import PairingButton from './PairingButton.vue'
67
 
67
 
68
 const router = useRouter()
68
 const router = useRouter()
69
-// const isPaired = ref(true)
70
-const isPaired = ref(false)
69
+const isPaired = ref(true)
70
+// const isPaired = ref(false)
71
 
71
 
72
 const props = defineProps({
72
 const props = defineProps({
73
     card: {
73
     card: {
148
     footer
148
     footer
149
         margin-bottom: 22px
149
         margin-bottom: 22px
150
         p
150
         p
151
-            font-family: Source Pro, CenturyGothic, AppleGothic, sans-serif
151
+            font-family: Source Pro, AppleGothic, sans-serif
152
             margin: 11px auto
152
             margin: 11px auto
153
             padding: 0 7px
153
             padding: 0 7px
154
             line-height: 1.619em
154
             line-height: 1.619em

+ 1
- 17
frontend/src/components/ProfileCardList.vue Datei anzeigen

63
         flex-wrap: wrap
63
         flex-wrap: wrap
64
         flex-direction: column
64
         flex-direction: column
65
 
65
 
66
+
66
 .more-results
67
 .more-results
67
     margin-bottom: 2em
68
     margin-bottom: 2em
68
-
69
-@media (min-width: $tablet) 
70
-    section.profile-card-list.xs12.w-flex > article
71
-        display: flex
72
-        flex-wrap: wrap
73
-        flex-direction: row
74
-    
75
-
76
-
77
-@media (max-width: $tablet) 
78
-    section.profile-card-list.xs12.w-flex > article
79
-        display: flex
80
-        flex-wrap: wrap
81
-        flex-direction: column
82
-    
83
-
84
-
85
 </style>
69
 </style>

Laden…
Abbrechen
Speichern