Skip to content

Commit d63222b

Browse files
committed
cosmetics
1 parent 51a130e commit d63222b

15 files changed

Lines changed: 18 additions & 21 deletions

community-app/frontend/src/components/AffiliatedWith.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ function click(item){
1212
</script>
1313
<template>
1414
<div>
15-
<p class="text-muted mb-1 border-top pt-3">Affiliated with</p>
15+
<p class="text-muted mb-1 border-top pt-3 smallTitle">Affiliated with</p>
1616
<div v-for="item in data" class="mb-2">
17-
<NTooltip trigger="hover" :disabled="!item.role">
17+
<NTooltip trigger="hover" :disabled="!item.role" placement="top-start">
1818
<template #trigger>
1919
<a :href="item.link" @click.prevent="click(item)">{{ item.name }}</a>
2020
</template>

community-app/frontend/src/components/InstitutionPeople.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ defineProps(['data']);
77
88
</script>
99
<template>
10-
<p class="text-muted mb-2 border-top pt-3">People</p>
10+
<p class="text-muted mb-2 border-top pt-3 smallTitle">People</p>
1111
<div v-for="person in data" class="mb-2">
1212
<NIcon size="20" class="mr-2">
1313
<PersonCircleOutline/>
1414
</NIcon>
15-
<NTooltip trigger="hover" :disabled="!person.role">
15+
<NTooltip trigger="hover" :disabled="!person.role" placement="top-start">
1616
<template #trigger>
1717
<a :href="person.link" @click.prevent="showUserProfile(person.username)">{{ person.username }}</a>
1818
</template>

community-app/frontend/src/components/MaintainedBy.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defineProps(['data']);
99

1010
<template>
1111
<div v-if="data">
12-
<p class="text-muted mb-2">This page is maintained by</p>
12+
<p class="text-muted mb-2 smallTitle">This page is maintained by</p>
1313
<div>
1414
<NIcon size="20" class="mr-2">
1515
<PersonCircleOutline/>

community-app/frontend/src/components/Maintains.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ defineProps(['data']);
77

88
<template>
99
<div>
10-
<p class="text-muted mb-1 border-top pt-3">Maintains</p>
10+
<p class="text-muted mb-1 border-top pt-3 smallTitle">Maintains</p>
1111
<a v-if="data.company" :href="'/business/'+data.company.slug" @click="(event) => showBusinessProfile(data.company.slug, event)">
1212
<div class="mb-1 d-flex text-align-center">
1313
{{ data.company.name }}

community-app/frontend/src/routes/EduView.vue

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,7 @@ const url = computed(()=>{
7777
<div class="col-12 col-md-6 col-lg-4 mb-sm-4">
7878
<InstitutionBasics class="mb-3" :data="edu"/>
7979
</div>
80-
<div v-if="edu.description" class="col-12 col-md-6 col-lg-8 mt-0 mt-md-3 mt-md-0 profileContent">
81-
82-
<hr class="d-block d-md-none"/>
83-
80+
<div v-if="edu.description" class="col-12 col-md-6 col-lg-8 mt-4 mt-md-0 profileContent">
8481
<p v-html="edu.description"></p>
8582
<MaintainedBy class="maintained mt-4 pt-3 border-top d-block d-md-none" :data="edu.owner"/>
8683
</div>

community-app/frontend/src/routes/UserView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ const hireCardVisible = computed(()=>{
253253
<BetaGammaUser v-if="betagammauser" :data="betagammauser"/>
254254
255255
</div>
256-
<div class="col-12 mt-3 mt-md-0 pt-md-0 col-md-6 col-lg-8 profileContent">
256+
<div class="col-12 col-md-6 col-lg-8 mt-4 mt-md-0 pt-md-0 profileContent">
257257
258258
<template v-if="description">
259259
<div class="mb-4 description">

community-app/frontend/src/styles/style.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,9 +267,9 @@ $orange-hover: #ee4b28;
267267
}
268268
}
269269

270-
.location, .joined{
270+
.location, .joined, .smallTitle{
271271
color: #666;
272-
font-size: 0.9rem;
272+
font-size: 0.95rem;
273273
}
274274

275275
.internship{

static/js/vue/app-BusinessView-DvX45awM.js renamed to static/js/vue/app-BusinessView-DOuFdI3v.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/js/vue/app-EduView-CnUys2eI.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/js/vue/app-EduView-OE6jitI7.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)