Skip to content

Commit

Permalink
Merge pull request #26 from zprobot/main
Browse files Browse the repository at this point in the history
update
  • Loading branch information
ypriverol authored Jan 7, 2024
2 parents ce9406c + bf17342 commit dce9d17
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
Binary file added src/assets/images/project.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/proteins_of_tissue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 10 additions & 14 deletions src/views/home/index.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<template>
<div>
<div class="card-box" style="padding: 3.5rem 0">
<!-- <div class="card-box" style="padding: 3.5rem 0">
<el-input
v-model="search"
size="large"
style="width: 50%; margin: 1.5rem 0"
placeholder="Search"
:suffix-icon="Search"
/>
</div>
</div> -->
<div
style="
padding: 1.5rem 0;
Expand Down Expand Up @@ -99,10 +99,9 @@
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem;
"
>
<img :src="logo" alt="img" style="width: 5rem; height: auto" />
<img :src="projectImg" alt="img" style="width: 34rem; height: auto" />
</div>
<div
class="card-box"
Expand All @@ -111,29 +110,26 @@
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem;
"
>
<img :src="logo" alt="img" style="width: 5rem; height: auto" />
<img :src="proteinsImg" alt="img" style="width: 34rem; height: auto" />
</div>

</div>
</div>
</template>
<script setup>
import { ref } from "vue";
// import quantMsLogo from "@/assets/images/nf-core-quantms_logo_light.png";
// import quantMsMetro from "@/assets/images/quantms_metro.png";
// import quantMs from "@/assets/images/quantms.png";
// import { ref } from "vue";
import pipeline from "@/assets/images/pipeline.png";
import {Tools, DocumentCopy, Histogram, Search} from "@element-plus/icons-vue";
import {Tools, DocumentCopy, Histogram} from "@element-plus/icons-vue";
// import logo from "@/assets/logo.png";
import logo from "@/assets/images/nf-core-quantms_logo_light.png";
const search = ref();
import projectImg from "@/assets/images/project.png";
import proteinsImg from "@/assets/images/proteins_of_tissue.png";
// const search = ref();
</script>
<style lang="scss" scoped>
.card-box {
background-color: white;
// background-color: white;
border-radius: 1rem;
}
Expand Down

0 comments on commit dce9d17

Please sign in to comment.