Skip to content

Commit

Permalink
make text selectable (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaum0 authored Jan 27, 2025
1 parent 25b7286 commit 651fdbe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion net/web/src/carousel/Carousel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function Carousel({ pad, items, itemRenderer, itemRemove }) {
<ReactResizeDetector handleWidth={true} handleHeight={false}>
{({ width, height }) => {
return (
<div class="item noselect">
<div class="item">
<div class="asset">{ itemRenderer(items[i], i) }</div>
<RemoveItem index={i} />
</div>
Expand Down
6 changes: 3 additions & 3 deletions net/web/src/session/Session.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export function Session() {
<ThemeProvider theme={settings.state.colors}>
<SessionWrapper>
{ (state.display === 'xlarge') && (
<div class="desktop-layout noselect">
<div class="desktop-layout">
<div class="left">
<Identity openAccount={openAccount} openCards={openCards} cardUpdated={state.cardUpdated} />
<div class="bottom">
Expand Down Expand Up @@ -192,7 +192,7 @@ export function Session() {
</div>
)}
{ (state.display === 'large' || state.display === 'medium') && (
<div class="tablet-layout noselect">
<div class="tablet-layout">
<div class="left">
<Identity openAccount={actions.openProfile} openCards={actions.openCards} cardUpdated={state.cardUpdated} />
<div class="bottom">
Expand Down Expand Up @@ -250,7 +250,7 @@ export function Session() {
</div>
)}
{ (state.display === 'small') && (
<div class="mobile-layout noselect">
<div class="mobile-layout">
<div class="top">
<div class="reframe">
<Channels open={actions.openConversation} active={{
Expand Down

0 comments on commit 651fdbe

Please sign in to comment.