const {login} = useAuth();
const {login} = useContext(AuthContext);
.element-grid__text {
font-family: 'Inter';
font-style: normal;
font-weight: 900;
font-size: 24px;
line-height: 29px;
color: black;
padding: 0;
text-overflow: ellipsis;
/* убери white-space: nowrap */
/* white-space: nowrap; */
/*overflow: hidden;*/
max-width: 88%;
}
text-overflow: ellipsis;
а также height: 100%;
тексту, чтобы overflow: hidden;
его не скрывал полностью:.element-grid__text {
font-family: 'Inter';
font-style: normal;
font-weight: 900;
font-size: 24px;
line-height: 29px;
color: black;
padding: 0;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
height: 100%;
max-width: 88%;
}
overflow: hidden;
будет "обрезать" его.element-grid__text {
font-family: 'Inter';
font-style: normal;
font-weight: 900;
font-size: 24px;
line-height: 29px;
color: black;
padding: 0;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
margin: 0;
max-width: 88%;
}
@media
в css или scss, и задавай фиксированные значения$(window).on("scroll", function() {
$(селектор header).toggleClass("active", $(this).scrollTop() > $(window).height());
});
<p>name is {this.props.names[params.id - 1]}</p>
this.state = {
card: [1, 2, 3],
names: ["kate", "jhon", "michael"]
};
this.state = {
cards: [
{ card_id: 1, user_name: "kate" },
// и так далее
]
};
this.state = {
users: [
{ user_id: 1, user_name: "kate", /* и прочая информация */ }
],
cards: [
{ card_id: 1, creator_id: 1 /* эту карточку создала kate под айдишником 1 */ }
// например создатель карточки, и после по этому id ты можешь достать инфу о этом создателе
]
};
console.log(__dirname); // выдавал мне / ( / - это символ слеш если что)
node: {
__dirname: true
}
node: {
global: true,
__dirname: true,
__filename: true
}
console.log(__dirname); // выдает src/assets/js/app.js
let fileData = fs.readFileSync(__dirname + "/text.txt").toString();
console.log(fileData); // выдает: "Привет, soso!"
const fs = require("fs");
fs.writeFile("/text2.txt", "Привет", err => { if(err) console.log(err) });
// или
const fs = require("fs");
fs.writeFile("/text2.txt", "Привет", "utf-8", err => { if(err) console.log(err) });
display: flex;
justify-content: right; /* или align-items: right */
width: 100%;
transparent: true, // прозрачность окна
show: false // скрытие ярлыка программы с панели задач
webPreferences: {
nodeIntegration: true
}
document.addEventListener("keydown", e => {
if(e.key == "C"){
console.log("нажал на C");
}
}); // также есть еще keypress и keyup