mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-29 07:34:07 +00:00
fix(#150): fixed arrow direction
This commit is contained in:
@@ -14,6 +14,11 @@ const StyledWrapper = styled.div`
|
||||
padding-top: 20%;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
|
||||
.loading-icon {
|
||||
transform: scaleY(-1);
|
||||
animation: rotateCounterClockwise 1s linear infinite;
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ const ResponseLoadingOverlay = ({ item, collection }) => {
|
||||
<StopWatch />
|
||||
</div>
|
||||
</div>
|
||||
<IconRefresh size={24} className="animate-spin" />
|
||||
<IconRefresh size={24} className="loading-icon" />
|
||||
<button
|
||||
onClick={handleCancelRequest}
|
||||
className="mt-4 uppercase btn-md rounded btn-secondary ease-linear transition-all duration-150"
|
||||
|
||||
@@ -129,6 +129,24 @@ const GlobalStyle = createGlobalStyle`
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotateClockwise {
|
||||
0% {
|
||||
transform: scaleY(-1) rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: scaleY(-1) rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotateCounterClockwise {
|
||||
0% {
|
||||
transform: scaleY(-1) rotate(360deg);
|
||||
}
|
||||
100% {
|
||||
transform: scaleY(-1) rotate(0deg);
|
||||
}
|
||||
}
|
||||
|
||||
// codemirror
|
||||
.CodeMirror {
|
||||
.cm-variable-valid {
|
||||
|
||||
Reference in New Issue
Block a user