61 lines
1023 B
Vue
61 lines
1023 B
Vue
<script>
|
|
export default {
|
|
name: 'profileHeader',
|
|
data() {
|
|
return {
|
|
count: 0
|
|
}
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div id="wrapper">
|
|
<div id="headerImages">
|
|
<img id="rankImg" src="../icons/misc/test.png" />
|
|
<img id="rangerTab" src="#" />
|
|
</div>
|
|
<div id="mainInfo">
|
|
<h1>Big Name</h1>
|
|
<h2>Rank</h2>
|
|
<h2>Unit</h2>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
#wrapper {
|
|
/* position: fixed; */
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
margin-top: 50px;
|
|
max-width: 400px;
|
|
padding-right: 120px;
|
|
border-right: solid;
|
|
border-color: var(--background-secondary);
|
|
}
|
|
|
|
#mainInfo h1 {
|
|
margin: 20px 0 10px 0px;
|
|
}
|
|
|
|
#rankImg {
|
|
max-width: 200px;
|
|
}
|
|
|
|
#headerImages {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
@media screen and (max-width: 1300px) {
|
|
#wrapper {
|
|
flex-direction: row;
|
|
border: none;
|
|
margin-left: 25vw;
|
|
}
|
|
}
|
|
|
|
</style> |