cleaned a lot of stinky stuff

This commit is contained in:
afnzmn 2022-07-22 23:39:50 -04:00
parent b8d7cef8f5
commit 2e87322cd2
4 changed files with 24 additions and 27 deletions

View File

@ -27,7 +27,6 @@
padding: 12px 40px; padding: 12px 40px;
cursor: pointer; cursor: pointer;
background-color: transparent; background-color: transparent;
margin-top: 45px;
transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
user-select: none; user-select: none;
} }

View File

@ -6,12 +6,12 @@
<h1>2.5.0</h1> <h1>2.5.0</h1>
<h4>2022-07-11</h4> <h4>2022-07-11</h4>
<div class="info"> <div class="info">
<div class='rounded-fill'><h3>Features</h3></div> <h3>Features</h3>
<ul> <ul>
<li><h5>feature request issue template <a href="https://github.com/revanced/revanced-patcher/commit/112bc998f4761a647cb9eab7454e35264fa96fd9">(1b39278)</a></h5></li> <li><h5>feature request issue template <a href="https://github.com/revanced/revanced-patcher/commit/112bc998f4761a647cb9eab7454e35264fa96fd9">(1b39278)</a></h5></li>
<li><h5>issue templates [skip ci] <a href="https://github.com/revanced/revanced-patcher/commit/112bc998f4761a647cb9eab7454e35264fa96fd9">(112bc99)</a></h5></li> <li><h5>issue templates [skip ci] <a href="https://github.com/revanced/revanced-patcher/commit/112bc998f4761a647cb9eab7454e35264fa96fd9">(112bc99)</a></h5></li>
</ul> </ul>
<div class='rounded-fill'><h3>Bug Fixes</h3></div> <h3>Bug Fixes</h3>
<ul> <ul>
<li><h5>missing additional items [skip ci] <a href="https://github.com/revanced/revanced-patcher/commit/0ebab8bf598d993df6e340651205cba48f1ef725">(0ebab8b)</a></h5></li> <li><h5>missing additional items [skip ci] <a href="https://github.com/revanced/revanced-patcher/commit/0ebab8bf598d993df6e340651205cba48f1ef725">(0ebab8b)</a></h5></li>
</ul> </ul>
@ -27,24 +27,17 @@
border-radius: 15px; border-radius: 15px;
justify-content: center; justify-content: center;
height:100%; height:100%;
min-width:250px; min-width:300px;
} }
h1 { h1 {
text-align: center; text-align: center;
margin-top: 1.4rem; padding-top: 1.4rem;
font-weight: 700; font-weight: 700;
} }
h3 { h3 {
text-align: left; text-align: left;
}
h4 {
text-align: center;
}
.rounded-fill {
display:inline-block; display:inline-block;
border-radius: 200px; border-radius: 200px;
margin-left: 1rem; margin-left: 1rem;
@ -52,16 +45,21 @@
background-color: var(--grey-three); background-color: var(--grey-three);
} }
h4 {
text-align: center;
}
.info{ .info{
margin-top: 1rem; margin-top: 1rem;
overflow-y: scroll;
margin-right: 0.5rem; margin-right: 0.5rem;
-webkit-mask-image: linear-gradient(180deg, #000 70%, transparent); padding-bottom: 1.5rem;
height:30vh; height:30vh;
overflow-y: scroll;
-webkit-mask-image: linear-gradient(180deg, #000 70%, transparent);
} }
ul { ul {
margin-top: 0.5rem; margin-top: 0.5rem;
margin-left:3rem; margin-left:3rem;
@ -81,8 +79,7 @@
.button { .button {
display:flex; display:flex;
justify-content: center; justify-content: center;
margin-top: -1.5rem; padding: 1.5rem 0;
margin-bottom: 1.5rem;
} }
</style> </style>

View File

@ -2,7 +2,8 @@
import DownloadSelector from "../atoms/DownloadSelector.svelte"; import DownloadSelector from "../atoms/DownloadSelector.svelte";
</script> </script>
<div class="download-selector-main"> <div class="recent"><DownloadSelector/></div>
<div class="main">
<DownloadSelector></DownloadSelector> <DownloadSelector></DownloadSelector>
<DownloadSelector></DownloadSelector> <DownloadSelector></DownloadSelector>
<DownloadSelector></DownloadSelector> <DownloadSelector></DownloadSelector>
@ -12,21 +13,20 @@
<DownloadSelector></DownloadSelector> <DownloadSelector></DownloadSelector>
</div> </div>
<style> <style>
.download-selector-main { .recent, .main {
background-color: var(--grey-one); background-color: var(--grey-one);
margin-top: 2rem; margin-top: 2rem;
padding: 0.75rem 0.75rem; padding: 0.75rem 0.75rem;
border-radius: 25px; border-radius: 25px;
width: 100%; }
.main {
gap:0.9rem; gap:0.9rem;
display:grid; display:grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-auto-flow: column; grid-auto-flow: column;
overscroll-behavior-x: contain;
scroll-snap-type: x mandatory;
overflow-x: scroll; overflow-x: scroll;
-webkit-mask-image: linear-gradient(#ffffff, #e66869);
} }
</style> </style>

View File

@ -29,7 +29,8 @@
display: flex; display: flex;
gap:1rem; gap:1rem;
user-select: none; user-select: none;
transform: translateX(-3px) transform: translateX(-3px);
margin-top: 3rem;
} }
.hero-text h1 { .hero-text h1 {